mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 11:08:03 +02:00
gallivm: increase size of texture target enum bitfield
Need to bump up the size of texture target bitfield for MSVC. Fixes:0ce7c4a7c9("gallivm: Use the proper enum for the texture target bitfield.") Reviewed-by: Neha Bhende <bhenden@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9928> (cherry picked from commita442e3ff55)
This commit is contained in:
parent
ed60dec381
commit
99a47874de
2 changed files with 2 additions and 2 deletions
|
|
@ -292,7 +292,7 @@
|
|||
"description": "gallivm: increase size of texture target enum bitfield",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "0ce7c4a7c98122996af849b0f1199da13cd7efa2"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ struct lp_static_texture_state
|
|||
unsigned swizzle_a:3;
|
||||
|
||||
/* pipe_texture's state */
|
||||
enum pipe_texture_target target:4; /**< PIPE_TEXTURE_* */
|
||||
enum pipe_texture_target target:5; /**< PIPE_TEXTURE_* */
|
||||
unsigned pot_width:1; /**< is the width a power of two? */
|
||||
unsigned pot_height:1;
|
||||
unsigned pot_depth:1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue