mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
mesa: silence gcc bit-field warning
This commit is contained in:
parent
a7a3d3c271
commit
d98b9f4edb
1 changed files with 2 additions and 2 deletions
|
|
@ -83,8 +83,8 @@ texenv_doing_secondary_color(GLcontext *ctx)
|
||||||
|
|
||||||
struct mode_opt {
|
struct mode_opt {
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
GLubyte Source:4; /**< SRC_x */
|
__extension__ GLubyte Source:4; /**< SRC_x */
|
||||||
GLubyte Operand:3; /**< OPR_x */
|
__extension__ GLubyte Operand:3; /**< OPR_x */
|
||||||
#else
|
#else
|
||||||
GLubyte Source; /**< SRC_x */
|
GLubyte Source; /**< SRC_x */
|
||||||
GLubyte Operand; /**< OPR_x */
|
GLubyte Operand; /**< OPR_x */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue