Searched refs:lrz_pitch (Results 1 – 11 of 11) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/ |
D | fd5_resource.c | 33 unsigned lrz_pitch = align(DIV_ROUND_UP(rsc->b.b.width0, 8), 64); in setup_lrz() local 39 lrz_pitch *= 2; in setup_lrz() 45 unsigned size = lrz_pitch * lrz_height * 2; in setup_lrz() 50 rsc->lrz_width = lrz_pitch; in setup_lrz() 51 rsc->lrz_pitch = lrz_pitch; in setup_lrz()
|
D | fd5_draw.c | 203 OUT_RING(ring, A5XX_RB_MRT_PITCH(zsbuf->lrz_pitch * 2)); in fd5_clear_lrz()
|
D | fd5_gmem.c | 177 OUT_RING(ring, A5XX_GRAS_LRZ_BUFFER_PITCH(rsc->lrz_pitch)); in emit_zs()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_resource.c | 215 unsigned lrz_pitch = align(DIV_ROUND_UP(width0, 8), 32); in setup_lrz() local 218 unsigned size = lrz_pitch * lrz_height * 2; in setup_lrz() 221 rsc->lrz_width = lrz_pitch; in setup_lrz() 222 rsc->lrz_pitch = lrz_pitch; in setup_lrz()
|
D | fd6_draw.c | 448 OUT_RING(ring, A6XX_RB_2D_DST_PITCH(zsbuf->lrz_pitch * 2).value); in fd6_clear_lrz()
|
D | fd6_gmem.c | 174 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = rsc->lrz_pitch), in emit_zs()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_image.c | 720 unsigned lrz_pitch = align(DIV_ROUND_UP(width, 8), 32); in tu_CreateImage() local 724 image->lrz_pitch = lrz_pitch; in tu_CreateImage() 726 unsigned lrz_size = lrz_pitch * lrz_height * 2; in tu_CreateImage()
|
D | tu_private.h | 1416 uint32_t lrz_pitch; member
|
D | tu_clear_blit.c | 1242 image->lrz_pitch * 2); in tu6_clear_lrz() 1243 ops->coords(cs, &(VkOffset2D) {}, NULL, &(VkExtent2D) {image->lrz_pitch, image->lrz_height}); in tu6_clear_lrz()
|
D | tu_cmd_buffer.c | 230 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = iview->image->lrz_pitch), in tu6_emit_zs()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_resource.h | 168 uint16_t lrz_pitch; member
|