diff options
Diffstat (limited to 'tests/shaders/glsl-vs-raytrace-bug26691.c')
-rw-r--r-- | tests/shaders/glsl-vs-raytrace-bug26691.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tests/shaders/glsl-vs-raytrace-bug26691.c b/tests/shaders/glsl-vs-raytrace-bug26691.c index cdb0b09e7..99820bbb6 100644 --- a/tests/shaders/glsl-vs-raytrace-bug26691.c +++ b/tests/shaders/glsl-vs-raytrace-bug26691.c @@ -25,10 +25,13 @@ #include "piglit-util-gl-common.h" #include "glsl-vs-raytrace-bug26691.h" -PIGLIT_GL_TEST_MAIN( - 256 /*window_width*/, - 256 /*window_height*/, - PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE) +PIGLIT_GL_TEST_CONFIG_BEGIN + + config.window_width = 256; + config.window_height = 256; + config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE; + +PIGLIT_GL_TEST_CONFIG_END static const float failing_pixel_percentage = 0.15F; |