• Home
  • Raw
  • Download

Lines Matching refs:pLayout

2399                                const VkImageSubresource *pSubresource, VkSubresourceLayout *pLayout)  in radv_GetImageSubresourceLayout()  argument
2419 pLayout->offset = ac_surface_get_plane_offset(device->physical_device->rad_info.gfx_level, in radv_GetImageSubresourceLayout()
2421 pLayout->rowPitch = ac_surface_get_plane_stride(device->physical_device->rad_info.gfx_level, in radv_GetImageSubresourceLayout()
2423 pLayout->arrayPitch = 0; in radv_GetImageSubresourceLayout()
2424 pLayout->depthPitch = 0; in radv_GetImageSubresourceLayout()
2425 pLayout->size = ac_surface_get_plane_size(surface, mem_plane_id); in radv_GetImageSubresourceLayout()
2429 pLayout->offset = ac_surface_get_plane_offset(device->physical_device->rad_info.gfx_level, in radv_GetImageSubresourceLayout()
2439 pLayout->rowPitch = surface->u.gfx9.surf_pitch * surface->bpe / 3; in radv_GetImageSubresourceLayout()
2445 pLayout->rowPitch = pitch * surface->bpe; in radv_GetImageSubresourceLayout()
2448 pLayout->arrayPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
2449 pLayout->depthPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
2450 pLayout->size = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
2452 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()
2454 pLayout->offset = (uint64_t)surface->u.legacy.level[level].offset_256B * 256 + in radv_GetImageSubresourceLayout()
2456 pLayout->rowPitch = surface->u.legacy.level[level].nblk_x * surface->bpe; in radv_GetImageSubresourceLayout()
2457 pLayout->arrayPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
2458 pLayout->depthPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
2459 pLayout->size = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
2461 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()