Lines Matching defs:box
2062 struct pipe_box box = *srcbox;
2065 if (box.width < 0) {
2066 box.x += box.width;
2067 box.width *= -1;
2069 if (box.height < 0) {
2070 box.y += box.height;
2071 box.height *= -1;
2073 if (box.depth < 0) {
2074 box.z += box.depth;
2075 box.depth *= -1;
2080 box.x >= 0 && box.x < src_width &&
2081 box.y >= 0 && box.y < src_height &&
2082 box.z >= 0 && box.z < src_depth &&
2083 box.x + box.width > 0 && box.x + box.width <= src_width &&
2084 box.y + box.height > 0 && box.y + box.height <= src_height &&
2085 box.z + box.depth > 0 && box.z + box.depth <= src_depth;
2251 info->dst.box.z);
2261 util_blitter_blit_generic(blitter, dst_view, &info->dst.box,
2262 src_view, &info->src.box, src->width0, src->height0,