From 0af4105458e63834b3b1219f4f26f5fd3e4da3bd Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Mon, 6 Jan 2014 21:54:56 +0100 Subject: [PATCH] winsys-glx: Fix swap region to remain disabled for old mesa Commit a750f80c6aaa was supposed to enable it for newer mesa but was wrong, fix that. --- cogl/winsys/cogl-winsys-glx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl/winsys/cogl-winsys-glx.c b/cogl/winsys/cogl-winsys-glx.c index 09a10c268..13fa2eb00 100644 --- a/cogl/winsys/cogl-winsys-glx.c +++ b/cogl/winsys/cogl-winsys-glx.c @@ -836,7 +836,7 @@ update_winsys_features (CoglContext *context, CoglError **error) arch == COGL_GPU_INFO_ARCHITECTURE_SWRAST)) { COGL_FLAGS_SET (context->winsys_features, - COGL_WINSYS_FEATURE_SWAP_REGION, TRUE); + COGL_WINSYS_FEATURE_SWAP_REGION, FALSE); } }