diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-06-11 21:14:42 -0700 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2012-06-20 16:49:34 -0700 |
commit | 29bbf12760b537a2a3b30d18ed22f88c6c89f7f7 (patch) | |
tree | 5643fc32eb96b09f98b2955335a4b07e7bc51183 /tests/texturing/max-texture-size.c | |
parent | 7b90e1b18fd694014d453139ecdbbb31c7625999 (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/texturing/max-texture-size.c')
-rw-r--r-- | tests/texturing/max-texture-size.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/texturing/max-texture-size.c b/tests/texturing/max-texture-size.c index 92316d43f..2355f529c 100644 --- a/tests/texturing/max-texture-size.c +++ b/tests/texturing/max-texture-size.c @@ -44,8 +44,10 @@ #include "piglit-util.h" #define COLOR_COMPONENTS 4 /*GL_RGBA*/ -int piglit_width = 100, piglit_height = 100; -int piglit_window_mode = GLUT_RGBA | GLUT_DOUBLE; +PIGLIT_GL_TEST_MAIN( + 100 /*window_width*/, + 100 /*window_height*/, + GLUT_RGBA | GLUT_DOUBLE) GLenum target[] = { GL_TEXTURE_1D, |