diff options
Diffstat (limited to 'src/glx/glxclient.h')
-rw-r--r-- | src/glx/glxclient.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 81ae792bf74..7363327139d 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -474,7 +474,12 @@ struct glx_screen_vtable { unsigned num_attrib, const uint32_t *attribs, unsigned *error); - + int (*query_renderer_integer)(struct glx_screen *psc, + int attribute, + int *value); + int (*query_renderer_string)(struct glx_screen *psc, + int attribute, + const char **value); }; struct glx_screen |