Searched refs:lrz_pitch (Results 1 – 11 of 11) sorted by relevance
/external/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_resource.c | 35 unsigned lrz_pitch = align(DIV_ROUND_UP(rsc->base.width0, 8), 64); in setup_lrz() local 41 lrz_pitch *= 2; in setup_lrz() 47 unsigned size = lrz_pitch * lrz_height * 2; in setup_lrz() 52 rsc->lrz_width = lrz_pitch; in setup_lrz() 53 rsc->lrz_pitch = lrz_pitch; in setup_lrz()
|
D | fd5_draw.c | 220 OUT_RING(ring, A5XX_RB_MRT_PITCH(zsbuf->lrz_pitch * 2)); in fd5_clear_lrz()
|
D | fd5_gmem.c | 173 OUT_RING(ring, A5XX_GRAS_LRZ_BUFFER_PITCH(rsc->lrz_pitch)); in emit_zs()
|
/external/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_resource.c | 134 unsigned lrz_pitch = align(DIV_ROUND_UP(width0, 8), 32); in setup_lrz() local 137 unsigned size = lrz_pitch * lrz_height * 2; in setup_lrz() 140 rsc->lrz_width = lrz_pitch; in setup_lrz() 141 rsc->lrz_pitch = lrz_pitch; in setup_lrz()
|
D | fd6_draw.c | 421 OUT_RING(ring, A6XX_RB_2D_DST_PITCH(zsbuf->lrz_pitch * 2).value); in fd6_clear_lrz()
|
D | fd6_gmem.c | 197 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = rsc->lrz_pitch), in emit_zs()
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_image.c | 691 unsigned lrz_pitch = align(DIV_ROUND_UP(width, 8), 32); in tu_CreateImage() local 695 image->lrz_pitch = lrz_pitch; in tu_CreateImage() 697 unsigned lrz_size = lrz_pitch * lrz_height * 2; in tu_CreateImage()
|
D | tu_private.h | 1267 uint32_t lrz_pitch; member
|
D | tu_clear_blit.c | 934 image->lrz_pitch * 2); in tu6_clear_lrz() 935 ops->coords(cs, &(VkOffset2D) {}, NULL, &(VkExtent2D) {image->lrz_pitch, image->lrz_height}); in tu6_clear_lrz()
|
D | tu_cmd_buffer.c | 217 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = iview->image->lrz_pitch), in tu6_emit_zs()
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_resource.h | 106 uint16_t lrz_pitch; member
|