summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/tests
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2015-11-25 16:29:10 -0800
committerEric Anholt <[email protected]>2015-12-01 10:24:22 -0800
commit741f642a6f6dedf51838248894a8a79f3cb53b83 (patch)
tree96690d5f1a9d5e0d374ac62bae521c6d7d9b8421 /src/mesa/main/tests
parent5cb9dc45c72595ae040e94cef5d4665bf61297fa (diff)
mesa: Drop apparently typoed GL_ALL_CLIENT_ATTRIB_BITS.
GL_ALL_ATTRIB_BITS is a thing, and GL_CLIENT_ALL_ATTRIB_BITS, but I don't see GL_ALL_CLIENT_ATTRIB_BITS in my grepping of khronos XML, GL extension specs, GL 1.1, GL 2.2, and GL 4.4. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r--src/mesa/main/tests/enum_strings.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/tests/enum_strings.cpp b/src/mesa/main/tests/enum_strings.cpp
index 48426a4022d..8b920261f8c 100644
--- a/src/mesa/main/tests/enum_strings.cpp
+++ b/src/mesa/main/tests/enum_strings.cpp
@@ -94,9 +94,7 @@ const struct enum_info everything[] = {
/* A bitfield where Mesa uses a different value from Khronos. */
{ 0x000fffff, "GL_ALL_ATTRIB_BITS" },
- /* A bitfield in the table where Mesa uses a different name from Khronos,
- * and we fail to return its string anyway!
- */
+ /* A bitfield in the table, where we fail to return its string anyway! */
{ (int)0xffffffff, "0xffffffff" },
{ 0, NULL }