Home
last modified time | relevance | path

Searched refs:box_upload (Results 1 – 1 of 1) sorted by relevance

/third_party/mesa3d/src/gallium/frontends/nine/
Dbuffer9.c570 struct pipe_box box_upload; in NineBuffer9_Upload() local
598 u_box_try_remove_region_1d(&box_upload, in NineBuffer9_Upload()
601 assert(box_upload.width > 0); in NineBuffer9_Upload()
604 if (box_upload.x > valid_region->x + valid_region->width && valid_region->width > 0) { in NineBuffer9_Upload()
605box_upload.width = box_upload.x + box_upload.width - (valid_region->x + valid_region->width); in NineBuffer9_Upload()
606 box_upload.x = valid_region->x + valid_region->width; in NineBuffer9_Upload()
607 } else if (box_upload.x + box_upload.width < valid_region->x && valid_region->width > 0) { in NineBuffer9_Upload()
608 box_upload.width = valid_region->x - box_upload.x; in NineBuffer9_Upload()
613 u_box_intersect_1d(&conflicting_region, &box_upload, filled_region); in NineBuffer9_Upload()
634 (10 * box_upload.width < filled_region->width && in NineBuffer9_Upload()
[all …]