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.
This commit is contained in:
Emmanuele Bassi 2016-08-26 18:24:34 +01:00
parent d91bdc1ec3
commit ea34b9d7b9
1 changed files with 3 additions and 1 deletions

View File

@ -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);