From: Emil Velikov Date: Sat, 10 May 2014 02:41:43 +0000 (+0100) Subject: dri_util: set implemented version of the DRI_CORE extension X-Git-Tag: upstream/10.3~1868 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a9afdcc3a144f5fa4998891b2f63061e38db293a;p=platform%2Fupstream%2Fmesa.git dri_util: set implemented version of the DRI_CORE extension ... rather than the one defined in our internal interface (dri_interface.h) Signed-off-by: Emil Velikov Reviewed-by: Kristian Høgsberg --- diff --git a/src/mesa/drivers/dri/common/dri_util.c b/src/mesa/drivers/dri/common/dri_util.c index 248c361..ce8b0ed 100644 --- a/src/mesa/drivers/dri/common/dri_util.c +++ b/src/mesa/drivers/dri/common/dri_util.c @@ -732,7 +732,7 @@ driSwapBuffers(__DRIdrawable *pdp) /** Core interface */ const __DRIcoreExtension driCoreExtension = { - .base = { __DRI_CORE, __DRI_CORE_VERSION }, + .base = { __DRI_CORE, 1 }, .createNewScreen = NULL, .destroyScreen = driDestroyScreen,