summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdel Gadllah <adel.gadllah@gmail.com>2014-01-06 21:54:56 +0100
committerAdel Gadllah <adel.gadllah@gmail.com>2014-01-06 21:54:56 +0100
commit0548757e187bca45b6887b043a97b7692b2ef07d (patch)
treea3321d141425b1ef9b89d75b85ae1677f3ad7082
parente7e216b1d3d151acf3fed619bd759692a989b4b4 (diff)
downloadcogl-0548757e187bca45b6887b043a97b7692b2ef07d.tar.gz
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.
-rw-r--r--cogl/winsys/cogl-winsys-glx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl/winsys/cogl-winsys-glx.c b/cogl/winsys/cogl-winsys-glx.c
index c23f58d5..a2d11ba0 100644
--- a/cogl/winsys/cogl-winsys-glx.c
+++ b/cogl/winsys/cogl-winsys-glx.c
@@ -826,7 +826,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);
}
}