disabled annoying GL warning

This commit is contained in:
izzy2lost
2025-09-18 08:36:33 -04:00
parent e70febd5b3
commit fcb76971f9
2 changed files with 7 additions and 4 deletions
+1
View File
@@ -19,3 +19,4 @@ build/
.idea/
*.iml
*.exe
/WARP.md
@@ -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;