diff options
author | Eric Anholt <[email protected]> | 2015-09-19 12:35:15 -0400 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-12-01 10:24:42 -0800 |
commit | 4922a3ae522de31287808f22a8e3a1fcbb2d3dab (patch) | |
tree | e3f6801363fee02126790ff9d5c852c1e8229b96 /src/mesa/main | |
parent | b65e44f55d531ff8ceaec8861f02a2c3c7a01297 (diff) |
mesa: Drop the blacklisting of new GL enums.
Now when people need new extensions, they can skip the entire
enum-definition process, and we can stop reviewing new extension XML for
its enum content.
This also brings in a new enum that I wanted to use in enum_strings.cpp
for testing the code generator.
v2: Drop comment about disabled GL_1PASS_EXT test.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/tests/enum_strings.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/tests/enum_strings.cpp b/src/mesa/main/tests/enum_strings.cpp index bff425aaf89..4d8d12fdf2b 100644 --- a/src/mesa/main/tests/enum_strings.cpp +++ b/src/mesa/main/tests/enum_strings.cpp @@ -68,10 +68,9 @@ const struct enum_info everything[] = { { 0x8062, "GL_REPLACE_EXT" }, /* An extension that made it from vendor to _EXT, but we never expect to - * see go farther. Disabled for the moment since Mesa doesn't have the XML - * for it yet. + * see go farther. */ - /* { 0x80a1, "GL_1PASS_EXT" }, */ + { 0x80a1, "GL_1PASS_EXT" }, /* A vendor-only extension that we never expect to see show up in * EXT/ARB/core. |