Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/freedreno/a5xx/
Dfd5_blitter.c194 const struct pipe_box *dbox = &info->dst.box; in emit_blit_buffer() local
205 debug_assert((dbox->y == 0) && (dbox->height == 1)); in emit_blit_buffer()
207 debug_assert((dbox->z == 0) && (dbox->depth == 1)); in emit_blit_buffer()
208 debug_assert(sbox->width == dbox->width); in emit_blit_buffer()
231 dshift = dbox->x & 0x3f; in emit_blit_buffer()
237 doff = (dbox->x + off) & ~0x3f; in emit_blit_buffer()
309 const struct pipe_box *dbox = &info->dst.box; in emit_blit() local
352 dx1 = dbox->x; in emit_blit()
353 dy1 = dbox->y; in emit_blit()
354 dx2 = dbox->x + dbox->width - 1; in emit_blit()
[all …]
/external/mesa3d/src/gallium/drivers/freedreno/a6xx/
Dfd6_blitter.c314 const struct pipe_box *dbox = &info->dst.box; in emit_blit_buffer() local
330 debug_assert((dbox->y == 0) && (dbox->height == 1)); in emit_blit_buffer()
332 debug_assert((dbox->z == 0) && (dbox->depth == 1)); in emit_blit_buffer()
333 debug_assert(sbox->width == dbox->width); in emit_blit_buffer()
356 dshift = dbox->x & 0x3f; in emit_blit_buffer()
364 doff = (dbox->x + off) & ~0x3f; in emit_blit_buffer()
632 const struct pipe_box *dbox = &info->dst.box; in emit_blit_texture() local
657 dx1 = dbox->x * nr_samples; in emit_blit_texture()
658 dy1 = dbox->y; in emit_blit_texture()
659 dx2 = (dbox->x + dbox->width) * nr_samples - 1; in emit_blit_texture()
[all …]
/external/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_execute.c1518 struct pipe_box box, dbox; in handle_copy_image_to_buffer() local
1540 dbox.x = copycmd->regions[i].bufferOffset; in handle_copy_image_to_buffer()
1541 dbox.y = 0; in handle_copy_image_to_buffer()
1542 dbox.z = 0; in handle_copy_image_to_buffer()
1543 dbox.width = copycmd->dst->bo->width0; in handle_copy_image_to_buffer()
1544 dbox.height = 1; in handle_copy_image_to_buffer()
1545 dbox.depth = 1; in handle_copy_image_to_buffer()
1550 &dbox, in handle_copy_image_to_buffer()