Merge pull request #7891 from kvark/vk-frame-view

[vk] Use proper view type of framebuffer images
This commit is contained in:
Connor McLaughlin 2019-03-16 09:26:01 +10:00 committed by GitHub
commit 861fc42fc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ std::unique_ptr<VKTexture> VKTexture::CreateAdopted(const TextureConfig& tex_con
{ {
std::unique_ptr<VKTexture> texture = std::make_unique<VKTexture>( std::unique_ptr<VKTexture> texture = std::make_unique<VKTexture>(
tex_config, nullptr, image, layout, ComputeImageLayout::Undefined); tex_config, nullptr, image, layout, ComputeImageLayout::Undefined);
if (!texture->CreateView(VK_IMAGE_VIEW_TYPE_2D_ARRAY)) if (!texture->CreateView(view_type))
return nullptr; return nullptr;
return texture; return texture;