diff options
author | Kristian Høgsberg <[email protected]> | 2013-11-11 16:35:35 -0800 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2013-11-12 16:08:17 -0800 |
commit | e0489531455623aa21aa565b2c890362d8437f23 (patch) | |
tree | 4a98548b5ac78b16a3266512cc12c516d90acd9d /src/mesa | |
parent | 68bb26bead333764f140225926a9123f38b567a3 (diff) |
dri: Remove redundant createNewContext function from __DRIimageDriverExtension
createContextAttribs is a superset of what createNewContext provides.
Also remove the function typedef, since createNewContext is deprecated
and no longer used in multiple interfaces.
Signed-off-by: Kristian Høgsberg <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Cc: "10.0" <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/common/dri_util.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c index 86cf24cb881..44e47f94f82 100644 --- a/src/mesa/drivers/dri/common/dri_util.c +++ b/src/mesa/drivers/dri/common/dri_util.c @@ -868,7 +868,6 @@ const __DRIimageDriverExtension driImageDriverExtension = { .createNewScreen2 = driCreateNewScreen2, .createNewDrawable = driCreateNewDrawable, - .createNewContext = driCreateNewContext, .getAPIMask = driGetAPIMask, .createContextAttribs = driCreateContextAttribs, }; |