diff options
author | Brian Paul <brianp@vmware.com> | 2009-09-02 10:38:46 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-09-02 10:38:46 -0600 |
commit | 5e809216a8d2e7ad093a1d25f3f6495f29e57572 (patch) | |
tree | ec73bb201a17935cde5e661f192e654c03b9d6bb | |
parent | 4b08e7498230eac30eea1721f33994b30999acd4 (diff) |
Revert "mesa: fix the non-GNU C bit-field case"
This reverts commit 4b08e7498230eac30eea1721f33994b30999acd4.
Don't know what I was thinking there.
-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 165d464e3b..b4923e904d 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -86,8 +86,8 @@ struct mode_opt { __extension__ GLubyte Source:4; /**< SRC_x */ __extension__ GLubyte Operand:3; /**< OPR_x */ #else - GLuint Source; /**< SRC_x */ - GLuint Operand; /**< OPR_x */ + GLubyte Source; /**< SRC_x */ + GLubyte Operand; /**< OPR_x */ #endif }; |