Home | History | Annotate | Download | only in util

Lines Matching refs:box

9 	       struct pipe_box *box )
11 box->x = x;
12 box->y = 0;
13 box->z = 0;
14 box->width = w;
15 box->height = 1;
16 box->depth = 1;
24 struct pipe_box *box )
26 box->x = x;
27 box->y = y;
28 box->z = 0;
29 box->width = w;
30 box->height = h;
31 box->depth = 1;
37 struct pipe_box *box )
39 box->x = 0;
40 box->y = 0;
41 box->z = 0;
42 box->width = w;
43 box->height = h;
44 box->depth = 1;
53 struct pipe_box *box )
55 box->x = x;
56 box->y = y;
57 box->z = z;
58 box->width = w;
59 box->height = h;
60 box->depth = 1;
70 struct pipe_box *box )
72 box->x = x;
73 box->y = y;
74 box->z = z;
75 box->width = w;
76 box->height = h;
77 box->depth = d;