Home
last modified time | relevance | path

Searched refs:gmem_align_h (Results 1 – 6 of 6) sorted by relevance

/third_party/mesa3d/src/freedreno/common/
Dfreedreno_devices.py92 def __init__(self, gmem_align_w, gmem_align_h, argument
96 self.gmem_align_h = gmem_align_h
113 super().__init__(gmem_align_w = 16, gmem_align_h = 4,
154 gmem_align_w = 32, gmem_align_h = 32,
167 gmem_align_w = 32, gmem_align_h = 32,
179 gmem_align_w = 32, gmem_align_h = 32,
194 gmem_align_w = 64, gmem_align_h = 32,
Dfreedreno_dev_info.h44 uint32_t gmem_align_w, gmem_align_h; member
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_pass.c835 pGranularity->height = device->physical_device->info->gmem_align_h; in tu_GetRenderAreaGranularity()
Dtu_clear_blit.c2870 y1 % phys_dev->info->gmem_align_h || (y2 % phys_dev->info->gmem_align_h && need_y2_align); in tu_store_gmem_attachment()
Dtu_cmd_buffer.c434 y1 = y1 & ~(phys_dev->info->gmem_align_h - 1); in tu6_emit_blit_scissor()
436 y2 = ALIGN_POT(y2 + 1, phys_dev->info->gmem_align_h) - 1; in tu6_emit_blit_scissor()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_gmem.c509 key->miny = scissor->miny & ~(screen->info->gmem_align_h - 1); in gmem_key_init()