Lines Matching defs:box

252             struct pipe_box box;
253 box.z = 0;
254 box.depth = 1;
265 u_box_minify_2d(&box, &tex->dirty_rect, l);
266 NineSurface9_UploadSelf(tex->surfaces[l], &box);
275 struct pipe_box box;
276 box.z = 0;
277 box.depth = 1;
286 u_box_minify_2d(&box, &tex->dirty_rect[z], l);
287 NineSurface9_UploadSelf(tex->surfaces[l * 6 + z], &box);
296 struct pipe_box box;
304 u_box_minify_3d(&box, &tex->dirty_box, l);
305 NineVolume9_UploadSelf(tex->volumes[l], &box);
319 struct pipe_box box;
321 box.x = box.y = box.z = 0;
322 box.depth = 1;
324 box.width = u_minify(This->base.info.width0, l);
325 box.height = u_minify(This->base.info.height0, l);
326 NineSurface9_UploadSelf(tex->surfaces[l], &box);
331 struct pipe_box box;
334 box.x = box.y = box.z = 0;
335 box.depth = 1;
337 box.width = u_minify(This->base.info.width0, l);
338 box.height = u_minify(This->base.info.height0, l);
340 NineSurface9_UploadSelf(tex->surfaces[l * 6 + z], &box);
345 struct pipe_box box;
347 box.x = box.y = box.z = 0;
349 box.width = u_minify(This->base.info.width0, l);
350 box.height = u_minify(This->base.info.height0, l);
351 box.depth = u_minify(This->base.info.depth0, l);
352 NineVolume9_UploadSelf(tex->volumes[l], &box);
450 struct pipe_box box;
451 box.x = 0;
452 box.y = 0;
453 box.z = 0;
458 box.width = u_minify(templ.width0, l);
459 box.height = u_minify(templ.height0, l);
460 box.depth = u_minify(templ.depth0, l);
467 old, m, &box);
468 box.width = u_minify(box.width, 1);
469 box.height = u_minify(box.height, 1);
470 box.depth = u_minify(box.depth, 1);