diff options
author | Imre Deak <[email protected]> | 2012-10-10 12:48:19 +0300 |
---|---|---|
committer | Oliver McFadden <[email protected]> | 2012-10-10 12:56:02 +0300 |
commit | 9c1c23331a1238ab8de4b2cd0e4c6a2f76772aed (patch) | |
tree | cf20179929cc937857a3d61d5d73fa3446ae8475 | |
parent | dd6479160cbde0937a0e867ca5c781584024ba53 (diff) |
glget: fix make check for glGet GL_POLYGON_OFFSET_BIAS
This got broken by:
7182a1f 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]>
-rw-r--r-- | 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 ebb2b179dff..d473c30b041 100644 --- a/src/mesa/main/tests/enum_strings.cpp +++ b/src/mesa/main/tests/enum_strings.cpp @@ -552,7 +552,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" }, |