diff options
author | A-w-x <80461138+A-w-x@users.noreply.github.com> | 2021-04-18 02:27:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 02:27:19 +0200 |
commit | 77199093978153d519d52264f9ef8b40b0592d0f (patch) | |
tree | fe3f36fb9190bb4fa02ce83dc311d7068fc51393 /Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs | |
parent | d23511c25c22fc47c54da28854034c5fbc143e33 (diff) |
HwCapabilities: Divide Intel into IntelWindows and IntelUnix (#2219)
as suggested by gdkchan
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs')
-rw-r--r-- | Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs b/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs index 621388ce..e8dfcc46 100644 --- a/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs +++ b/Ryujinx.Graphics.OpenGL/Image/TextureCopy.cs @@ -205,7 +205,7 @@ namespace Ryujinx.Graphics.OpenGL.Image int copyWidth = sizeInBlocks ? BitUtils.DivRoundUp(width, blockWidth) : width; int copyHeight = sizeInBlocks ? BitUtils.DivRoundUp(height, blockHeight) : height; - if (HwCapabilities.Vendor == HwCapabilities.GpuVendor.Intel) + if (HwCapabilities.Vendor == HwCapabilities.GpuVendor.IntelWindows) { GL.CopyImageSubData( src.Storage.Handle, |