Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
degasus committed Apr 4, 2013
1 parent d032f3f commit a2ebb2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
Expand Up @@ -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 ",
Expand All @@ -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);
Expand Down

0 comments on commit a2ebb2b

Please sign in to comment.