From: Marek Olšák Date: Sat, 4 Aug 2012 01:14:14 +0000 (+0200) Subject: gallium: make pipe_box signed in order to represent flipped blits X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1a17c4234431a17ec60503d69d7e84f85b3ae50d;p=mesa.git gallium: make pipe_box signed in order to represent flipped blits This will be used by u_blitter. --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index c828c806aef..76559ad2649 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -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; };