summaryrefslogtreecommitdiffstats
path: root/src/glx/dri2_priv.h
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2013-02-15 22:35:55 -0800
committerIan Romanick <[email protected]>2013-11-07 18:12:33 -0800
commit4680d237c5ae2d1ce6446ff2ec2f0a91f8286554 (patch)
treea1f8a81c28ed5e74b307957ab88ffc795e9103b1 /src/glx/dri2_priv.h
parent419684091cb58e9c06e698c6eb2e86731815d279 (diff)
glx/dri2: Add DRI2 support for GLX_MESA_query_renderer
The new functions for this extension were added to a separate file (dri2_query_renderer.c) to facilitate unit testing. I tried putting them in dri2_glx.c, and it resulting in an unending chain of dependencies. It was the proverbial threading hanging from a sweater. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glx/dri2_priv.h')
-rw-r--r--src/glx/dri2_priv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glx/dri2_priv.h b/src/glx/dri2_priv.h
index 3ddcd6e698f..c21eee5b43d 100644
--- a/src/glx/dri2_priv.h
+++ b/src/glx/dri2_priv.h
@@ -42,6 +42,7 @@ struct dri2_screen {
const __DRI2configQueryExtension *config;
const __DRItexBufferExtension *texBuffer;
const __DRI2throttleExtension *throttle;
+ const __DRI2rendererQueryExtension *rendererQuery;
const __DRIconfig **driver_configs;
void *driver;