vk/0.130: Remove msaa members of VkDepthStencilViewCreateInfo

This commit is contained in:
Chad Versace
2015-07-08 11:49:43 -07:00
parent 522ab835d6
commit b4ef7f354b
2 changed files with 0 additions and 3 deletions

View File

@@ -1382,8 +1382,6 @@ typedef struct {
uint32_t mipLevel;
uint32_t baseArraySlice;
uint32_t arraySize;
VkImage msaaResolveImage;
VkImageSubresourceRange msaaResolveSubResource;
VkDepthStencilViewCreateFlags flags;
} VkDepthStencilViewCreateInfo;

View File

@@ -689,7 +689,6 @@ anv_CreateDepthStencilView(VkDevice _device,
anv_assert(pCreateInfo->mipLevel == 0);
anv_assert(pCreateInfo->baseArraySlice == 0);
anv_assert(pCreateInfo->arraySize == 1);
anv_assert(pCreateInfo->msaaResolveImage == 0);
view->bo = image->bo;