mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 01:00:10 +01:00
gallium: make pipe_box signed in order to represent flipped blits
This will be used by u_blitter.
This commit is contained in:
parent
03b78ceb50
commit
1a17c42344
1 changed files with 6 additions and 6 deletions
|
|
@ -387,12 +387,12 @@ struct pipe_sampler_view
|
|||
*/
|
||||
struct pipe_box
|
||||
{
|
||||
unsigned x;
|
||||
unsigned y;
|
||||
unsigned z;
|
||||
unsigned width;
|
||||
unsigned height;
|
||||
unsigned depth;
|
||||
int x;
|
||||
int y;
|
||||
int z;
|
||||
int width;
|
||||
int height;
|
||||
int depth;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue