Force Vulkan swapchain re-creation when window size changes

This commit is contained in:
Gabriel A 2024-07-06 17:32:12 -03:00
parent 1a0a351a15
commit 3c95eaa6bd

View file

@ -623,7 +623,8 @@ namespace Ryujinx.Graphics.Vulkan
public override void SetSize(int width, int height)
{
// Not needed as we can get the size from the surface.
// We don't need to use width and height as we can get the size from the surface.
_swapchainIsDirty = true;
}
public override void ChangeVSyncMode(bool vsyncEnabled)