mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
Vulkan: Fix compilation on 32-bit targets
This commit is contained in:
parent
d139659ea2
commit
1286c309e3
17 changed files with 88 additions and 179 deletions
|
@ -280,8 +280,8 @@ void SwapChain::DestroyRenderPass()
|
|||
if (!m_render_pass)
|
||||
return;
|
||||
|
||||
g_command_buffer_mgr->DeferResourceDestruction(m_render_pass);
|
||||
m_render_pass = nullptr;
|
||||
vkDestroyRenderPass(g_vulkan_context->GetDevice(), m_render_pass, nullptr);
|
||||
m_render_pass = VK_NULL_HANDLE;
|
||||
}
|
||||
|
||||
bool SwapChain::CreateSwapChain()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue