From a2ebb2b3240495a044c30ec18900e8b400d21602 Mon Sep 17 00:00:00 2001 From: degasus Date: Thu, 4 Apr 2013 18:55:37 +0200 Subject: [PATCH] ogl: remove "Missing Extension" from osd I think it was the best place, but I can't see "this issue is because of ..." any more --- Source/Plugins/Plugin_VideoOGL/Src/Render.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp index d2356bebed..0d5daaf9ec 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp @@ -373,7 +373,7 @@ Renderer::Renderer() g_ogl_config.gl_renderer, g_ogl_config.gl_version).c_str(), 5000); - OSD::AddMessage(StringFromFormat("Missing Extensions: %s%s%s%s%s%s%s%s", + WARN_LOG(VIDEO,"Missing OGL Extensions: %s%s%s%s%s%s%s%s", g_ActiveConfig.backend_info.bSupportsDualSourceBlend ? "" : "DualSourceBlend ", g_ActiveConfig.backend_info.bSupportsGLSLUBO ? "" : "UniformBuffer ", g_ogl_config.bSupportsGLPinnedMemory ? "" : "PinnedMemory ", @@ -382,7 +382,7 @@ Renderer::Renderer() g_ogl_config.bSupportsGLSync ? "" : "Sync ", g_ogl_config.bSupportCoverageMSAA ? "" : "CSAA ", g_ogl_config.bSupportSampleShading ? "" : "SSAA " - ).c_str(), 5000); + ); s_LastMultisampleMode = g_ActiveConfig.iMultisampleMode; s_MSAASamples = GetNumMSAASamples(s_LastMultisampleMode);