mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-19 04:30:25 +01:00
anv/image: Delete old ifdef'd out code
This commit is contained in:
parent
4dd5ef9e09
commit
8b9ceda9f1
1 changed files with 0 additions and 32 deletions
|
|
@ -573,35 +573,3 @@ anv_image_get_surface_for_aspect_mask(struct anv_image *image, VkImageAspectFlag
|
|||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
VkImageAspectFlags aspect_mask = 0;
|
||||
if (format->depth_format)
|
||||
aspect_mask |= VK_IMAGE_ASPECT_DEPTH_BIT;
|
||||
if (format->has_stencil)
|
||||
aspect_mask |= VK_IMAGE_ASPECT_STENCIL_BIT;
|
||||
if (!aspect_mask)
|
||||
aspect_mask |= VK_IMAGE_ASPECT_COLOR_BIT;
|
||||
|
||||
anv_image_view_init(iview, device,
|
||||
&(VkImageViewCreateInfo) {
|
||||
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
||||
.image = info->image,
|
||||
.viewType = VK_IMAGE_VIEW_TYPE_2D,
|
||||
.format = info->format,
|
||||
.channels = {
|
||||
.r = VK_CHANNEL_SWIZZLE_R,
|
||||
.g = VK_CHANNEL_SWIZZLE_G,
|
||||
.b = VK_CHANNEL_SWIZZLE_B,
|
||||
.a = VK_CHANNEL_SWIZZLE_A,
|
||||
},
|
||||
.subresourceRange = {
|
||||
.aspectMask = aspect_mask,
|
||||
.baseMipLevel = info->mipLevel,
|
||||
.mipLevels = 1,
|
||||
.baseArrayLayer = info->baseArraySlice,
|
||||
.arraySize = info->arraySize,
|
||||
},
|
||||
},
|
||||
NULL);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue