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

This commit is contained in:
Brian Paul 2009-09-02 10:12:15 -06:00
parent d98b9f4edb
commit 4b08e74982

View file

@ -86,8 +86,8 @@ struct mode_opt {
__extension__ GLubyte Source:4; /**< SRC_x */
__extension__ GLubyte Operand:3; /**< OPR_x */
#else
GLubyte Source; /**< SRC_x */
GLubyte Operand; /**< OPR_x */
GLuint Source; /**< SRC_x */
GLuint Operand; /**< OPR_x */
#endif
};