From 7b2f471d4ff07bc811bbd84919c6708ab0f399f4 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 10 Apr 2018 18:54:50 -0300 Subject: [GPU] Add support for the BC4/5 texture formats --- Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs') diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs index 03c3ef52..17bf6291 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs @@ -74,6 +74,8 @@ namespace Ryujinx.Graphics.Gal.OpenGL case GalTextureFormat.BC1: return PixelInternalFormat.CompressedRgbaS3tcDxt1Ext; case GalTextureFormat.BC2: return PixelInternalFormat.CompressedRgbaS3tcDxt3Ext; case GalTextureFormat.BC3: return PixelInternalFormat.CompressedRgbaS3tcDxt5Ext; + case GalTextureFormat.BC4: return PixelInternalFormat.CompressedRedRgtc1; + case GalTextureFormat.BC5: return PixelInternalFormat.CompressedRgRgtc2; } throw new NotImplementedException(Format.ToString()); -- cgit v1.2.3