diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-09-22 16:04:35 +0200 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2012-10-09 19:08:29 -0700 |
commit | 15e7655425bd1b14824fba91015c4bc6c1b8b359 (patch) | |
tree | 73d0aad432aaa710b93daaa3f5a8c90db6c15295 /tests/texturing/depthstencil-render-miplevels.cpp | |
parent | b8ec67144506f806780c06f00252c421811b238a (diff) |
util,tests: Replace GLUT visual enums with PIGLTI_GL_VISUAL enums (v2)
I'm trying to transition Piglit from using GLUT to using Waffle. That
requires either killing or wrapping all GLUT code.
Define enum piglit_gl_visual in piglit-framework.h, of which each value
matches its corresponding GLUT visual enum.
Do the following substitution in all util and test sources:
GLUT_RGB -> PIGLIT_GL_VISUAL_RGB
GLUT_RGBA -> PIGLIT_GL_VISUAL_RGBA
GLUT_DOUBLE -> PIGLIT_GL_VISUAL_DOUBLE
GLUT_ACCUM -> PIGLIT_GL_VISUAL_ACCUM
GLUT_ALPHA -> PIGLIT_GL_VISUAL_ALPHA
GLUT_DEPTH -> PIGLIT_GL_VISUAL_DEPTH
GLUT_STENCIL -> PIGLIT_GL_VISUAL_STENCIL
v2: Remove GLUT_INDEX, for Ken.
Reviewed-and-tested-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Tested-by: Paul Berry <stereotype441@gmail.com>
Acked-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'tests/texturing/depthstencil-render-miplevels.cpp')
-rw-r--r-- | tests/texturing/depthstencil-render-miplevels.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/texturing/depthstencil-render-miplevels.cpp b/tests/texturing/depthstencil-render-miplevels.cpp index 4246fc7d2..7498f29f6 100644 --- a/tests/texturing/depthstencil-render-miplevels.cpp +++ b/tests/texturing/depthstencil-render-miplevels.cpp @@ -89,7 +89,7 @@ PIGLIT_GL_TEST_MAIN( 16 /*window_width*/, 16 /*window_height*/, - GLUT_RGBA) + PIGLIT_GL_VISUAL_RGBA) namespace { |