mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
mesa: fix the non-GNU C bit-field case
This commit is contained in:
parent
d98b9f4edb
commit
4b08e74982
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue