OGL: Fix MSAA being forced to 1x

This was a regression from the remove-everything-static-from-renderer
PR. As the comment indicates, it would be nice to move all of this logic
out of the Renderer constructor, but this is a much larger change.
This commit is contained in:
Stenzek 2017-03-31 21:55:26 +10:00
parent 542fb347f1
commit 5326a18fdf
2 changed files with 4 additions and 4 deletions

View File

@ -580,6 +580,10 @@ Renderer::Renderer()
g_Config.backend_info.bSupportsEarlyZ = g_Config.backend_info.bSupportsEarlyZ =
g_ogl_config.bSupportsEarlyFragmentTests || g_ogl_config.bSupportsConservativeDepth; g_ogl_config.bSupportsEarlyFragmentTests || g_ogl_config.bSupportsConservativeDepth;
glGetIntegerv(GL_MAX_SAMPLES, &g_ogl_config.max_samples);
if (g_ogl_config.max_samples < 1 || !g_ogl_config.bSupportsMSAA)
g_ogl_config.max_samples = 1;
if (g_ogl_config.bSupportsDebug) if (g_ogl_config.bSupportsDebug)
{ {
if (GLExtensions::Supports("GL_KHR_debug")) if (GLExtensions::Supports("GL_KHR_debug"))

View File

@ -170,10 +170,6 @@ bool VideoBackend::FillBackendInfo()
return false; return false;
} }
glGetIntegerv(GL_MAX_SAMPLES, &g_ogl_config.max_samples);
if (g_ogl_config.max_samples < 1 || !g_ogl_config.bSupportsMSAA)
g_ogl_config.max_samples = 1;
// TODO: Move the remaining fields from the Renderer constructor here. // TODO: Move the remaining fields from the Renderer constructor here.
return true; return true;
} }