mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-29 22:48:12 +02:00
mesa: texgen_enabled is only 1 bit.
For the state key for hashing fixed function vertex shaders, the texgen_enabled field requires only a single bit. Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de> Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
d6b0ad51ec
commit
6726d16098
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ struct state_key {
|
|||
unsigned texunit_really_enabled:1;
|
||||
unsigned texmat_enabled:1;
|
||||
unsigned coord_replace:1;
|
||||
unsigned texgen_enabled:4;
|
||||
unsigned texgen_enabled:1;
|
||||
unsigned texgen_mode0:4;
|
||||
unsigned texgen_mode1:4;
|
||||
unsigned texgen_mode2:4;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue