summaryrefslogtreecommitdiff
path: root/tests/shaders/fp-condition_codes-01.c
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2012-06-11 21:14:42 -0700
committerChad Versace <chad.versace@linux.intel.com>2012-06-20 16:49:34 -0700
commit29bbf12760b537a2a3b30d18ed22f88c6c89f7f7 (patch)
tree5643fc32eb96b09f98b2955335a4b07e7bc51183 /tests/shaders/fp-condition_codes-01.c
parent7b90e1b18fd694014d453139ecdbbb31c7625999 (diff)
tests: Let each test define main()
Each test that did not define main() now does so using PIGLIT_GL_TEST_MAIN(). Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'tests/shaders/fp-condition_codes-01.c')
-rw-r--r--tests/shaders/fp-condition_codes-01.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/shaders/fp-condition_codes-01.c b/tests/shaders/fp-condition_codes-01.c
index 34e28fb43..87ced6265 100644
--- a/tests/shaders/fp-condition_codes-01.c
+++ b/tests/shaders/fp-condition_codes-01.c
@@ -42,9 +42,10 @@
#define BOX_SIZE 16
-int piglit_window_mode = GLUT_DOUBLE;
-int piglit_width = (((BOX_SIZE+1)*TEST_ROWS)+1);
-int piglit_height = (((BOX_SIZE+1)*TEST_COLS)+1);
+PIGLIT_GL_TEST_MAIN(
+ (((BOX_SIZE+1)*TEST_ROWS)+1) /*window_width*/,
+ (((BOX_SIZE+1)*TEST_COLS)+1) /*window_height*/,
+ GLUT_DOUBLE)
#define INVERT_MASK(x) (~(x) & 0x0f)