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