diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-06-21 18:10:19 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-06-21 18:10:19 -0300 |
| commit | a4020bb398c72166cecd1457c973e0bebf9d2060 (patch) | |
| tree | 81e53b3c8b96973e0b031a32106cf69fc3f05488 /Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs | |
| parent | 53ebbcfbd9faab2659840bd8e22536cc7a2a6720 (diff) | |
Port from OpenTK.NETCore to OpenTK.NetStandard (#176)
* Minor code changes
* Forgot to remove a method
Diffstat (limited to 'Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs')
| -rw-r--r-- | Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs index d81fcc48..56f157e5 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OGLTexture.cs @@ -44,7 +44,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL if (IsCompressedTextureFormat(Texture.Format)) { - PixelInternalFormat InternalFmt = OGLEnumConverter.GetCompressedTextureFormat(Texture.Format); + InternalFormat InternalFmt = OGLEnumConverter.GetCompressedTextureFormat(Texture.Format); GL.CompressedTexImage2D( TextureTarget.Texture2D, |
