Module: Mesa Branch: 9.0 Commit: d56ee2433578ff10ca47b76e2303b2bf70270b7a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=d56ee2433578ff10ca47b76e2303b2bf70270b7a
Author: Imre Deak <[email protected]> Date: Wed Oct 10 12:48:19 2012 +0300 glget: fix make check for glGet GL_POLYGON_OFFSET_BIAS This got broken by: 22b7ddc7f glapi: rename/move GL_POLYGON_OFFSET_BIAS to its extension section Fix it by appending the _EXT suffix to the enum in the test too. Signed-off-by: Imre Deak <[email protected]> Reviewed-by: Oliver McFadden <[email protected]> --- src/mesa/main/tests/enum_strings.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/tests/enum_strings.cpp b/src/mesa/main/tests/enum_strings.cpp index 7d46080..f4f424d 100644 --- a/src/mesa/main/tests/enum_strings.cpp +++ b/src/mesa/main/tests/enum_strings.cpp @@ -563,7 +563,7 @@ const struct enum_info everything[] = { { 0x8036, "GL_UNSIGNED_INT_10_10_10_2" }, { 0x8037, "GL_POLYGON_OFFSET_FILL" }, { 0x8038, "GL_POLYGON_OFFSET_FACTOR" }, - { 0x8039, "GL_POLYGON_OFFSET_BIAS" }, + { 0x8039, "GL_POLYGON_OFFSET_BIAS_EXT" }, { 0x803A, "GL_RESCALE_NORMAL" }, { 0x803B, "GL_ALPHA4" }, { 0x803C, "GL_ALPHA8" }, _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
