Merge pull request #264 from magumagu/opengl-clear-adapters
OpenGL: Clear backend_info.Adapters on initialization
This commit is contained in:
commit
4b60bdd2d0
|
@ -150,6 +150,8 @@ void InitBackendInfo()
|
|||
//g_Config.backend_info.bSupportsEarlyZ = true; // is gpu dependent and must be set in renderer
|
||||
g_Config.backend_info.bSupportsOversizedViewports = true;
|
||||
|
||||
g_Config.backend_info.Adapters.clear();
|
||||
|
||||
// aamodes
|
||||
const char* caamodes[] = {_trans("None"), "2x", "4x", "8x", "8x CSAA", "8xQ CSAA", "16x CSAA", "16xQ CSAA", "4x SSAA"};
|
||||
g_Config.backend_info.AAModes.assign(caamodes, caamodes + sizeof(caamodes)/sizeof(*caamodes));
|
||||
|
|
Loading…
Reference in New Issue