mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Merge pull request #7891 from kvark/vk-frame-view
[vk] Use proper view type of framebuffer images
This commit is contained in:
commit
861fc42fc9
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ std::unique_ptr<VKTexture> VKTexture::CreateAdopted(const TextureConfig& tex_con
|
|||
{
|
||||
std::unique_ptr<VKTexture> texture = std::make_unique<VKTexture>(
|
||||
tex_config, nullptr, image, layout, ComputeImageLayout::Undefined);
|
||||
if (!texture->CreateView(VK_IMAGE_VIEW_TYPE_2D_ARRAY))
|
||||
if (!texture->CreateView(view_type))
|
||||
return nullptr;
|
||||
|
||||
return texture;
|
||||
|
|
Loading…
Add table
Reference in a new issue