From: Brian Paul Date: Wed, 2 Sep 2009 16:38:46 +0000 (-0600) Subject: Revert "mesa: fix the non-GNU C bit-field case" X-Git-Tag: 062012170305~15523^2~232 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e809216a8d2e7ad093a1d25f3f6495f29e57572;p=profile%2Fivi%2Fmesa.git Revert "mesa: fix the non-GNU C bit-field case" This reverts commit 4b08e7498230eac30eea1721f33994b30999acd4. Don't know what I was thinking there. --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index 165d464..b4923e9 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 };