diff options
Diffstat (limited to 'include/GL/internal')
| -rw-r--r-- | include/GL/internal/dri_interface.h | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index 4b9264166f..172669e395 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -824,4 +824,18 @@ struct __DRIimageLookupExtensionRec {  				  void *loaderPrivate);  }; +/** + * This extension allows for common DRI2 options + */ +#define __DRI2_CONFIG_QUERY "DRI_CONFIG_QUERY" +#define __DRI2_CONFIG_QUERY_VERSION 1 + +typedef struct __DRI2configQueryExtensionRec __DRI2configQueryExtension; +struct __DRI2configQueryExtensionRec { +   __DRIextension base; + +   int (*configQueryb)(__DRIscreen *screen, const char *var, GLboolean *val); +   int (*configQueryi)(__DRIscreen *screen, const char *var, GLint *val); +   int (*configQueryf)(__DRIscreen *screen, const char *var, GLfloat *val); +};  #endif  | 
