diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2011-12-01 13:56:38 -0800 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2011-12-23 08:49:53 -0800 |
commit | b5b2081d75105883c3e7452775c674716b665385 (patch) | |
tree | 56c95f16fcdad4a8679b332d817d456e91b1df91 /include | |
parent | 1ab545494a6750527cb8b945c286f23a6524826a (diff) | |
download | external_mesa3d-b5b2081d75105883c3e7452775c674716b665385.zip external_mesa3d-b5b2081d75105883c3e7452775c674716b665385.tar.gz external_mesa3d-b5b2081d75105883c3e7452775c674716b665385.tar.bz2 |
dri2: Add createContextAttribs entry point for DRISW version 3
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/internal/dri_interface.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index add03c7..b21445f 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -679,7 +679,7 @@ struct __DRIlegacyExtensionRec { * conjunction with the core extension. */ #define __DRI_SWRAST "DRI_SWRast" -#define __DRI_SWRAST_VERSION 2 +#define __DRI_SWRAST_VERSION 3 struct __DRIswrastExtensionRec { __DRIextension base; @@ -699,6 +699,22 @@ struct __DRIswrastExtensionRec { const __DRIconfig *config, __DRIcontext *shared, void *data); + + /** + * Create a context for a particular API with a set of attributes + * + * \since version 3 + * + * \sa __DRIdri2ExtensionRec::createContextAttribs + */ + __DRIcontext *(*createContextAttribs)(__DRIscreen *screen, + int api, + const __DRIconfig *config, + __DRIcontext *shared, + unsigned num_attribs, + const uint32_t *attribs, + unsigned *error, + void *loaderPrivate); }; /** @@ -859,6 +875,8 @@ struct __DRIdri2ExtensionRec { * Create a context for a particular API with a set of attributes * * \since version 3 + * + * \sa __DRIswrastExtensionRec::createContextAttribs */ __DRIcontext *(*createContextAttribs)(__DRIscreen *screen, int api, |