From e233f1ddede8b92a6a8ce1db0b9285d66aac4015 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Sat, 17 Dec 2022 02:49:29 +0100 Subject: [PATCH] GS-ogl: Remove extra DSA log. There is already a log that checks the extension itself. --- pcsx2/GS/Renderers/OpenGL/GLLoader.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcsx2/GS/Renderers/OpenGL/GLLoader.cpp b/pcsx2/GS/Renderers/OpenGL/GLLoader.cpp index 2c1b639d7c..f37fe55034 100644 --- a/pcsx2/GS/Renderers/OpenGL/GLLoader.cpp +++ b/pcsx2/GS/Renderers/OpenGL/GLLoader.cpp @@ -95,7 +95,6 @@ namespace Emulate_DSA // Replace function pointer to emulate DSA behavior void Init() { - Console.Warning("DSA is not supported. Expect slower performance"); glBindTextureUnit = BindTextureUnit; glCreateTextures = CreateTexture; glTextureStorage2D = TextureStorage; @@ -193,7 +192,7 @@ namespace GLLoader { glScissorIndexed = ReplaceGL::ScissorIndexed; glViewportIndexedf = ReplaceGL::ViewportIndexedf; - Console.Warning("GL_ARB_viewport_array is not supported! Function pointer will be replaced"); + Console.Warning("GL_ARB_viewport_array is not supported! Function pointer will be replaced."); } if (!GLAD_GL_ARB_texture_barrier)