From d3cc4a0a354a982cbaef145d6623a3b819cc87f3 Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Fri, 13 Jul 2018 23:07:00 +0200 Subject: [PATCH] Update OGLEnumConverter.cs --- Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs index a9a5aa42e8..877595a14e 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OGLEnumConverter.cs @@ -140,7 +140,6 @@ namespace Ryujinx.Graphics.Gal.OpenGL case GalTextureFormat.R16: return (PixelFormat.Red, PixelType.HalfFloat); case GalTextureFormat.R8: return (PixelFormat.Red, PixelType.UnsignedByte); case GalTextureFormat.ZF32: return (PixelFormat.DepthComponent, PixelType.Float); - } throw new NotImplementedException(Format.ToString()); }