mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 16:00:08 +01:00
gallium: change pipe_scissor_state to 32 bit integer
Reviewed-by: Qiang Yu <yuq825@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38587>
This commit is contained in:
parent
832594bbe2
commit
bc1a6b0a41
1 changed files with 4 additions and 4 deletions
|
|
@ -244,10 +244,10 @@ struct pipe_viewport_state
|
||||||
|
|
||||||
struct pipe_scissor_state
|
struct pipe_scissor_state
|
||||||
{
|
{
|
||||||
unsigned minx:16;
|
unsigned minx;
|
||||||
unsigned miny:16;
|
unsigned miny;
|
||||||
unsigned maxx:16;
|
unsigned maxx;
|
||||||
unsigned maxy:16;
|
unsigned maxy;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue