From fcb76971f915cc81a4fef67b9d737bcdeae91685 Mon Sep 17 00:00:00 2001 From: izzy2lost Date: Thu, 18 Sep 2025 08:36:33 -0400 Subject: [PATCH] disabled annoying GL warning --- .gitignore | 1 + .../main/cpp/pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4f2ea9b..0914b15 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ build/ .idea/ *.iml *.exe +/WARP.md diff --git a/app/src/main/cpp/pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp b/app/src/main/cpp/pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp index 2f3fb8a..16fa4db 100644 --- a/app/src/main/cpp/pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp +++ b/app/src/main/cpp/pcsx2/GS/Renderers/OpenGL/GSDeviceOGL.cpp @@ -708,8 +708,9 @@ bool GSDeviceOGL::CheckFeatures(bool& buggy_pbo) if (!GLAD_GL_ARB_texture_barrier) { glTextureBarrier = ReplaceGL::TextureBarrier; - Host::AddOSDMessage( - "GL_ARB_texture_barrier is not supported, blending will not be accurate.", Host::OSD_ERROR_DURATION); + // OSD message disabled: GL_ARB_texture_barrier warning + // Host::AddOSDMessage( + // "GL_ARB_texture_barrier is not supported, blending will not be accurate.", Host::OSD_ERROR_DURATION); } if (!GLAD_GL_ARB_direct_state_access) @@ -754,8 +755,9 @@ bool GSDeviceOGL::CheckFeatures(bool& buggy_pbo) m_features.texture_barrier = m_features.framebuffer_fetch || GLAD_GL_ARB_texture_barrier; if (!m_features.texture_barrier) { - Host::AddOSDMessage( - "GL_ARB_texture_barrier is not supported, blending will not be accurate.", Host::OSD_ERROR_DURATION); + // OSD message disabled: GL_ARB_texture_barrier warning + // Host::AddOSDMessage( + // "GL_ARB_texture_barrier is not supported, blending will not be accurate.", Host::OSD_ERROR_DURATION); } m_features.provoking_vertex_last = true;