Home | History | Annotate | Download | only in nine

Lines Matching refs:box

257             struct pipe_box box;
258 box.z = 0;
259 box.depth = 1;
270 u_box_minify_2d(&box, &tex->dirty_rect, l);
271 NineSurface9_UploadSelf(tex->surfaces[l], &box);
280 struct pipe_box box;
281 box.z = 0;
282 box.depth = 1;
291 u_box_minify_2d(&box, &tex->dirty_rect[z], l);
292 NineSurface9_UploadSelf(tex->surfaces[l * 6 + z], &box);
301 struct pipe_box box;
309 u_box_minify_3d(&box, &tex->dirty_box, l);
310 NineVolume9_UploadSelf(tex->volumes[l], &box);
324 struct pipe_box box;
326 box.x = box.y = box.z = 0;
327 box.depth = 1;
329 box.width = u_minify(This->base.info.width0, l);
330 box.height = u_minify(This->base.info.height0, l);
331 NineSurface9_UploadSelf(tex->surfaces[l], &box);
336 struct pipe_box box;
339 box.x = box.y = box.z = 0;
340 box.depth = 1;
342 box.width = u_minify(This->base.info.width0, l);
343 box.height = u_minify(This->base.info.height0, l);
345 NineSurface9_UploadSelf(tex->surfaces[l * 6 + z], &box);
350 struct pipe_box box;
352 box.x = box.y = box.z = 0;
354 box.width = u_minify(This->base.info.width0, l);
355 box.height = u_minify(This->base.info.height0, l);
356 box.depth = u_minify(This->base.info.depth0, l);
357 NineVolume9_UploadSelf(tex->volumes[l], &box);
455 struct pipe_box box;
456 box.x = 0;
457 box.y = 0;
458 box.z = 0;
463 box.width = u_minify(templ.width0, l);
464 box.height = u_minify(templ.height0, l);
465 box.depth = u_minify(templ.depth0, l);
472 old, m, &box);
473 box.width = u_minify(box.width, 1);
474 box.height = u_minify(box.height, 1);
475 box.depth = u_minify(box.depth, 1);