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:
Marek Olšák 2025-12-03 11:35:09 -05:00 committed by Marge Bot
parent 832594bbe2
commit bc1a6b0a41

View file

@ -244,10 +244,10 @@ struct pipe_viewport_state
struct pipe_scissor_state
{
unsigned minx:16;
unsigned miny:16;
unsigned maxx:16;
unsigned maxy:16;
unsigned minx;
unsigned miny;
unsigned maxx;
unsigned maxy;
};