diff options
author | Ian Romanick <[email protected]> | 2011-12-01 13:56:38 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-12-23 08:49:53 -0800 |
commit | b5b2081d75105883c3e7452775c674716b665385 (patch) | |
tree | 56c95f16fcdad4a8679b332d817d456e91b1df91 /src | |
parent | 1ab545494a6750527cb8b945c286f23a6524826a (diff) |
dri2: Add createContextAttribs entry point for DRISW version 3
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/common/drisw_util.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/drisw_util.c b/src/mesa/drivers/dri/common/drisw_util.c index 614339eeb42..a19123f7064 100644 --- a/src/mesa/drivers/dri/common/drisw_util.c +++ b/src/mesa/drivers/dri/common/drisw_util.c @@ -288,8 +288,12 @@ const __DRIcoreExtension driCoreExtension = { }; const __DRIswrastExtension driSWRastExtension = { - { __DRI_SWRAST, __DRI_SWRAST_VERSION }, + /* Force the version to 2 because the underlying driver don't (can't!) + * support the extra requirements of CreateContextAttribs. + */ + { __DRI_SWRAST, 2 }, driCreateNewScreen, driCreateNewDrawable, - driCreateNewContextForAPI + driCreateNewContextForAPI, + NULL }; |