summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authordegasus <wickmarkus@web.de>2013-02-17 21:41:00 +0100
committerdegasus <wickmarkus@web.de>2013-02-17 21:41:00 +0100
commitbef24b5c6b0e9550ea51e581aff1fff4eeff65aa (patch)
tree3b869a042921ade602b21f91655346d3ac8dc60a /Source
parent334bd52f2ca715df25992dd12f2dcd9e9fd49cbb (diff)
new format for gl extensions
Diffstat (limited to 'Source')
-rw-r--r--Source/Plugins/Plugin_VideoOGL/Src/Render.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
index 847ffa7acf..0a814cbb6d 100644
--- a/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
+++ b/Source/Plugins/Plugin_VideoOGL/Src/Render.cpp
@@ -311,11 +311,16 @@ Renderer::Renderer()
g_Config.backend_info.bSupportsGLSLCache = GLEW_ARB_get_program_binary;
UpdateActiveConfig();
- OSD::AddMessage(StringFromFormat("Supports Blending: %s UBOs: %s PinnedMem: %s Cache: %s",
- g_ActiveConfig.backend_info.bSupportsDualSourceBlend ? "True" : "False",
- g_ActiveConfig.backend_info.bSupportsGLSLUBO ? "True" : "False",
- g_ActiveConfig.backend_info.bSupportsGLPinnedMemory ? "True" : "False",
- g_ActiveConfig.backend_info.bSupportsGLSLCache ? "True" : "False").c_str(), 5000);
+ OSD::AddMessage(StringFromFormat("Supports: %s%s%s%s- Missing: %s%s%s%s",
+ g_ActiveConfig.backend_info.bSupportsDualSourceBlend ? "DualSourceBlend " : "",
+ g_ActiveConfig.backend_info.bSupportsGLSLUBO ? "UniformBuffer " : "",
+ g_ActiveConfig.backend_info.bSupportsGLPinnedMemory ? "PinnedMemory " : "",
+ g_ActiveConfig.backend_info.bSupportsGLSLCache ? "ShaderCache " : "",
+ g_ActiveConfig.backend_info.bSupportsDualSourceBlend ? "" : "DualSourceBlend ",
+ g_ActiveConfig.backend_info.bSupportsGLSLUBO ? "" : "UniformBuffer ",
+ g_ActiveConfig.backend_info.bSupportsGLPinnedMemory ? "" : "PinnedMemory ",
+ g_ActiveConfig.backend_info.bSupportsGLSLCache ? "" : "ShaderCache "
+ ).c_str(), 5000);
s_LastMultisampleMode = g_ActiveConfig.iMultisampleMode;
s_MSAASamples = GetNumMSAASamples(s_LastMultisampleMode);