Revert "mesa: fix the non-GNU C bit-field case"

This reverts commit 4b08e74982.

Don't know what I was thinking there.
This commit is contained in:
Brian Paul 2009-09-02 10:38:46 -06:00
parent 4b08e74982
commit 5e809216a8
1 changed files with 2 additions and 2 deletions

View File

@ -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
};