aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/gl-3.0/api/clearbuffer-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/spec/gl-3.0/api/clearbuffer-common.c')
-rw-r--r--tests/spec/gl-3.0/api/clearbuffer-common.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/tests/spec/gl-3.0/api/clearbuffer-common.c b/tests/spec/gl-3.0/api/clearbuffer-common.c
index b41a99f6..1f723e9d 100644
--- a/tests/spec/gl-3.0/api/clearbuffer-common.c
+++ b/tests/spec/gl-3.0/api/clearbuffer-common.c
@@ -30,10 +30,13 @@ const float default_color[4] = { 0.2, 0.4, 0.6, 1.0 };
const float default_depth = 0.2;
const int default_stencil = 0x7a;
-PIGLIT_GL_TEST_MAIN(
- 100 /*window_width*/,
- 100 /*window_height*/,
- PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE)
+PIGLIT_GL_TEST_CONFIG_BEGIN
+
+ config.window_width = 100;
+ config.window_height = 100;
+ config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE;
+
+PIGLIT_GL_TEST_CONFIG_END
GLuint
generate_simple_fbo(bool color, bool stencil, bool depth, bool packed)