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 | 200 OUT_RING(ring, A5XX_RB_MRT_PITCH(zsbuf->lrz_pitch * 2)); in fd5_clear_lrz()
|
D | fd5_gmem.c | 176 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 | 415 OUT_RING(ring, A6XX_RB_2D_DST_PITCH(zsbuf->lrz_pitch * 2).value); in fd6_clear_lrz()
|
D | fd6_gmem.c | 185 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = rsc->lrz_pitch), in emit_zs()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_image.c | 544 unsigned lrz_pitch = align(DIV_ROUND_UP(width, 8), 32); in tu_image_init() local 548 image->lrz_pitch = lrz_pitch; in tu_image_init() 550 unsigned lrz_size = lrz_pitch * lrz_height * 2; in tu_image_init()
|
D | tu_image.h | 38 uint32_t lrz_pitch; member
|
D | tu_lrz.c | 147 A6XX_GRAS_LRZ_BUFFER_PITCH(.pitch = depth_image->lrz_pitch), in tu6_emit_lrz_buffer()
|
D | tu_clear_blit.c | 1416 image->lrz_pitch * 2, PIPE_FORMAT_Z16_UNORM); in tu6_clear_lrz() 1417 ops->coords(cs, &(VkOffset2D) {}, NULL, &(VkExtent2D) {image->lrz_pitch, image->lrz_height}); in tu6_clear_lrz()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_resource.h | 168 uint16_t lrz_pitch; member
|