mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-14 22:50:45 +00:00
Remove unnecessary Vulkan cast for m_SwapChain when calling OPTICK_GPU_FLIP()
This commit is contained in:
parent
2b933df6da
commit
9ebe476f4f
1 changed files with 1 additions and 1 deletions
|
@ -1297,7 +1297,7 @@ void DeviceManager_VK::EndFrame()
|
|||
|
||||
void DeviceManager_VK::Present()
|
||||
{
|
||||
OPTICK_GPU_FLIP( ( VkSwapchainKHR )m_SwapChain );
|
||||
OPTICK_GPU_FLIP( m_SwapChain );
|
||||
OPTICK_CATEGORY( "Vulkan_Present", Optick::Category::Wait );
|
||||
|
||||
void* pNext = nullptr;
|
||||
|
|
Loading…
Reference in a new issue