summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_box.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2010-05-22 20:31:11 +0100
committerKeith Whitwell <keithw@vmware.com>2010-06-07 16:34:55 +0100
commitd6861be9cc42c19f7f0bb719e7e2dab5e592614e (patch)
tree7626906961362842ed8d6674cc3c7395ea3d75a1 /src/gallium/auxiliary/util/u_box.h
parent5a916204179c6787157af3f3be758dc36162ab20 (diff)
util: add u_box_3d
Diffstat (limited to 'src/gallium/auxiliary/util/u_box.h')
-rw-r--r--src/gallium/auxiliary/util/u_box.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_box.h b/src/gallium/auxiliary/util/u_box.h
index 919967b55a..e9c71743fc 100644
--- a/src/gallium/auxiliary/util/u_box.h
+++ b/src/gallium/auxiliary/util/u_box.h
@@ -60,6 +60,25 @@ void u_box_2d_zslice( unsigned x,
box->depth = 1;
}
+
+static INLINE
+void u_box_3d( unsigned x,
+ unsigned y,
+ unsigned z,
+ unsigned w,
+ unsigned h,
+ unsigned d,
+ struct pipe_box *box )
+{
+ box->x = x;
+ box->y = y;
+ box->z = z;
+ box->width = w;
+ box->height = h;
+ box->depth = d;
+}
+
+
static INLINE
struct pipe_subresource u_subresource( unsigned face,
unsigned level )