X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=metrics.h;h=26de580d517066856133971fb5ac7641fb7559be;hb=43fa296375ee35d811b7fed4537312ce9d08feac;hp=b5f985977a5a6ecbeec45024a1a45864a5b196c0;hpb=61b4545d541527ca2bd76811195b964595db7ed1;p=fips diff --git a/metrics.h b/metrics.h index b5f9859..26de580 100644 --- a/metrics.h +++ b/metrics.h @@ -50,6 +50,71 @@ typedef enum METRICS_OP_SHADER } metrics_op_t; +/* Timer query */ +typedef struct timer_query +{ + unsigned id; + + metrics_op_t op; + struct timer_query *next; +} timer_query_t; + +/* Performance-monitor query */ +typedef struct monitor +{ + unsigned id; + + metrics_op_t op; + struct monitor *next; +} monitor_t; + +typedef struct op_metrics +{ + /* This happens to also be the index into the + * ctx->op_metrics array currently + */ + metrics_op_t op; + double time_ns; + + double **counters; +} op_metrics_t; + +typedef struct metrics +{ + metrics_op_t op; + + /* GL_TIME_ELAPSED query for which glEndQuery has not yet + * been called. */ + unsigned timer_begun_id; + + /* GL_TIME_ELAPSED queries for which glEndQuery has been + * called, (but results have not yet been queried). */ + timer_query_t *timer_head; + timer_query_t *timer_tail; + + /* Performance monitor for which glEndPerfMonitorAMD has not + * yet been called. */ + unsigned monitor_begun_id; + + /* Performance monitors for which glEndPerfMonitorAMD has + * been called, (but results have not yet been queried). */ + monitor_t *monitor_head; + monitor_t *monitor_tail; + + int monitors_in_flight; + + unsigned num_op_metrics; + op_metrics_t *op_metrics; +} metrics_t; + +/* Initialize a metrics_t object for tracking metrics. */ +void +metrics_init (metrics_t *metrics); + +/* Cleanup a metrics_t object that's no longer needed. */ +void +metrics_fini (metrics_t *metrics); + /* Start accumulating GPU time. * * The time accumulated will be accounted against the @@ -77,6 +142,12 @@ metrics_counter_stop (void); void metrics_set_current_op (metrics_op_t op); +/* Return the current metrics_op_t value, (the value most-recently-set + * with a call to metrics_set_current_op). + */ +metrics_op_t +metrics_get_current_op (void); + /* Should be called at the end of every function wrapper for a * function that ends a frame, (glXSwapBuffers and similar). * @@ -86,4 +157,18 @@ metrics_set_current_op (metrics_op_t op); void metrics_end_frame (void); +/* Process outstanding metrics requests, accumulating results. + * + * This function is called automatically by metrics_end_frame. + * + * During a frame, it may be important to call this function to avoid + * too many oustanding timer/performance-monitor queries. At the same + * time, it's important not to call this function too frequently, + * since collection of metrics information will result in flushes of + * the OpenGL pipeline which can interfere with the behavior being + * measured. + */ +void +metrics_collect_available (void); + #endif