Lines Matching refs:pLayout
1241 VkSubresourceLayout* pLayout) in radv_GetImageSubresourceLayout() argument
1250 pLayout->offset = surface->u.gfx9.offset[level] + surface->u.gfx9.surf_slice_size * layer; in radv_GetImageSubresourceLayout()
1251 pLayout->rowPitch = surface->u.gfx9.surf_pitch * surface->bpe; in radv_GetImageSubresourceLayout()
1252 pLayout->arrayPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1253 pLayout->depthPitch = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1254 pLayout->size = surface->u.gfx9.surf_slice_size; in radv_GetImageSubresourceLayout()
1256 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()
1258 …pLayout->offset = surface->u.legacy.level[level].offset + (uint64_t)surface->u.legacy.level[level]… in radv_GetImageSubresourceLayout()
1259 pLayout->rowPitch = surface->u.legacy.level[level].nblk_x * surface->bpe; in radv_GetImageSubresourceLayout()
1260 pLayout->arrayPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1261 pLayout->depthPitch = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1262 pLayout->size = (uint64_t)surface->u.legacy.level[level].slice_size_dw * 4; in radv_GetImageSubresourceLayout()
1264 pLayout->size *= u_minify(image->info.depth, level); in radv_GetImageSubresourceLayout()