projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5dc0f49
)
mesa: enum bitfields are a gcc-only feature, use GLubyte
author
Brian Paul
<brianp@vmware.com>
Thu, 13 May 2010 22:37:02 +0000
(16:37 -0600)
committer
Brian Paul
<brianp@vmware.com>
Fri, 14 May 2010 19:23:41 +0000
(13:23 -0600)
src/mesa/main/get.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/get.c
b/src/mesa/main/get.c
index f3b4b7bdc182e142f53e490de7ced4a95d127717..12d046b0754bbea29226c333b5f5196ed0e72e4d 100644
(file)
--- a/
src/mesa/main/get.c
+++ b/
src/mesa/main/get.c
@@
-136,8
+136,8
@@
enum value_extra {
struct value_desc {
GLenum pname;
- enum value_location location : 8;
- enum value_type type : 8;
+ GLubyte location; /**< enum value_location */
+ GLubyte type; /**< enum value_type */
int offset;
const int *extra;
};