diff --git a/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs b/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs index 82b32289..9f0ab806 100644 --- a/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs +++ b/src/SharpEmu.Libs/VideoOut/VulkanVideoPresenter.cs @@ -5457,6 +5457,8 @@ internal static unsafe class VulkanVideoPresenter FlipVersion = version, Width = source.Width, Height = source.Height, + LogicalWidth = source.LogicalWidth, + LogicalHeight = source.LogicalHeight, MipLevels = 1, GuestFormat = source.GuestFormat, Format = source.Format, @@ -7604,6 +7606,8 @@ internal static unsafe class VulkanVideoPresenter Address = 0, Width = width, Height = height, + LogicalWidth = width, + LogicalHeight = height, MipLevels = 1, GuestFormat = GetGuestTextureFormat(texture.Format, texture.NumberType), Format = vkFormat, @@ -7810,6 +7814,8 @@ internal static unsafe class VulkanVideoPresenter Address = texture.Address, Width = width, Height = height, + LogicalWidth = width, + LogicalHeight = height, MipLevels = 1, GuestFormat = guestFormat, Format = vkFormat,