Home | History | Annotate | Download | only in svga

Lines Matching refs:box

60    SVGA3dCopyBox box;
63 box.x = st->base.box.x;
64 box.y = y;
65 box.z = st->base.box.z;
66 box.w = st->base.box.width;
67 box.h = h;
68 box.d = 1;
69 box.srcx = 0;
70 box.srcy = srcy;
71 box.srcz = 0;
74 st->face = st->base.box.z;
75 box.z = 0;
84 st->base.box.x,
86 box.z,
87 st->base.box.x + st->base.box.width,
89 box.z + 1,
93 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags);
96 ret = SVGA3D_SurfaceDMA(svga->swc, st, transfer, &box, 1, flags);
126 st->base.box.y, st->base.box.height, 0,
140 for(y = 0; y < st->base.box.height; y += h) {
144 if (y + h > st->base.box.height)
145 h = st->base.box.height - y;
244 const struct pipe_box *box)
250 unsigned nblocksx = util_format_get_nblocksx(texture->format, box->width);
251 unsigned nblocksy = util_format_get_nblocksy(texture->format, box->height);
257 assert(box->depth == 1);
265 st->base.box = *box;
379 tex->defined[transfer->box.z][transfer->level] = TRUE;