diff options
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index e4c103c55e4..311278000f2 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -816,6 +816,14 @@ struct dd_function_table { /*@}*/ #endif + /** + * \name Query objects + */ + /*@{*/ + void (*BeginQuery)(GLcontext *ctx, struct gl_query_object *q); + void (*EndQuery)(GLcontext *ctx, struct gl_query_object *q); + /*@}*/ + /** * \name Support for multiple T&L engines |