diff options
author | José Fonseca <jfonseca@vmware.com> | 2008-12-30 17:21:25 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2008-12-30 17:21:25 +0000 |
commit | 9972d7147b1622074669111d72d85467c8c398cc (patch) | |
tree | 5be42dbd7cfa913d86dc655bdf4bad06705a07b4 | |
parent | 72f993b5b11174c2917af29ef7a86e7866d681fb (diff) |
mesa: Do not specify types in bitfields.
As advised by gcc -pedantic.
-rw-r--r-- | src/mesa/main/texenvprogram.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 2f90a34220..bd33cb4e05 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -55,8 +55,8 @@ struct texenvprog_cache_item #define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM) struct mode_opt { - GLubyte Source:4; - GLubyte Operand:3; + GLuint Source:4; + GLuint Operand:3; }; struct state_key { |