summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2016-08-26 18:24:34 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2016-08-26 18:24:34 +0100
commitea34b9d7b9ade78b04d4056feb0a13fce6f7c953 (patch)
tree95484ca9e3a8eae35d4d7696dea02f08094d55b9
parentd91bdc1ec394c51b8665a831400fa8c4ccc573ab (diff)
downloadcogl-ea34b9d7b9ade78b04d4056feb0a13fce6f7c953.tar.gz
conform: Disable 3D textures on GLES
It has started to consistently fail when using the GLES driver, but since there isn't anybody left to debug it, we should simply disable the unit on anything that isn't big GL.
-rw-r--r--tests/conform/test-conform-main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/conform/test-conform-main.c b/tests/conform/test-conform-main.c
index 9b6573d9..162911d1 100644
--- a/tests/conform/test-conform-main.c
+++ b/tests/conform/test-conform-main.c
@@ -76,7 +76,9 @@ main (int argc, char **argv)
ADD_TEST (test_pixel_buffer_set_data, 0, 0);
ADD_TEST (test_pixel_buffer_sub_region, 0, 0);
UNPORTED_TEST (test_texture_rectangle);
- ADD_TEST (test_texture_3d, TEST_REQUIREMENT_TEXTURE_3D, 0);
+ ADD_TEST (test_texture_3d,
+ TEST_REQUIREMENT_GL | TEST_REQUIREMENT_TEXTURE_3D,
+ 0);
ADD_TEST (test_wrap_modes, 0, 0);
UNPORTED_TEST (test_texture_pixmap_x11);
ADD_TEST (test_texture_get_set_data, 0, 0);