Lines Matching refs:pLayout
1855 VkSubresourceLayout* pLayout) in radv_GetImageSubresourceLayout() argument
1870 pLayout->offset = plane->offset + level_offset + surface->u.gfx9.surf_slice_size * layer; in radv_GetImageSubresourceLayout()
1878 pLayout->rowPitch = surface->u.gfx9.surf_pitch * surface->bpe / 3; in radv_GetImageSubresourceLayout()
1883 pLayout->rowPitch = pitch * surface->bpe; in radv_GetImageSubresourceLayout()
1886 pLayout->arrayPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1887 pLayout->depthPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1888 pLayout->size = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1890 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()
1892 …pLayout->offset = plane->offset + surface->u.legacy.level[level].offset + (uint64_t)surface->u.leg… in radv_GetImageSubresourceLayout()
1893 pLayout->rowPitch = surface->u.legacy.level[level].nblk_x * surface->bpe; in radv_GetImageSubresourceLayout()
1894 pLayout->arrayPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1895 pLayout->depthPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1896 pLayout->size = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1898 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()