Home
last modified time | relevance | path

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

/external/mesa3d/src/freedreno/common/
Dfreedreno_devices.py101 def __init__(self, chip, gmem_align_w, gmem_align_h, argument
109 self.gmem_align_h = gmem_align_h
146 super().__init__(chip, gmem_align_w = 16, gmem_align_h = 4,
193 gmem_align_w = 32, gmem_align_h = 32,
214 gmem_align_w = 32, gmem_align_h = 32,
232 gmem_align_w = 32, gmem_align_h = 32,
251 gmem_align_w = 64, gmem_align_h = 32,
269 gmem_align_w = 64, gmem_align_h = 32,
287 gmem_align_w = 64, gmem_align_h = 32,
Dfreedreno_dev_info.h28 uint32_t gmem_align_w, gmem_align_h; member
/external/mesa3d/src/freedreno/vulkan/
Dtu_pass.cc1357 pGranularity->height = device->physical_device->info->gmem_align_h; in tu_GetRenderAreaGranularity()
1367 pGranularity->height = device->physical_device->info->gmem_align_h; in tu_GetRenderingAreaGranularityKHR()
Dtu_clear_blit.cc5007 y1 % phys_dev->info->gmem_align_h || in tu_attachment_store_unaligned()
5008 (y2 % phys_dev->info->gmem_align_h && need_y2_align)); in tu_attachment_store_unaligned()
Dtu_cmd_buffer.cc702 y1 = y1 & ~(phys_dev->info->gmem_align_h - 1); in tu6_emit_blit_scissor()
704 y2 = ALIGN_POT(y2 + 1, phys_dev->info->gmem_align_h) - 1; in tu6_emit_blit_scissor()
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_gmem.c523 key->miny = scissor->miny & ~(screen->info->gmem_align_h - 1); in gmem_key_init()