mirror of
https://github.com/izzy2lost/PSX2.git
synced 2026-07-05 15:18:36 -07:00
disabled annoying GL warning
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user