diff options
| author | degasus <wickmarkus@web.de> | 2015-09-17 17:48:25 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2015-09-19 13:22:55 +0200 |
| commit | c976e14277aa70eaeb4fe6115137645a2a77b507 (patch) | |
| tree | f468c9b1a058146fec28e14eef5f2f89017af865 /Source/Core/VideoBackends/Software/SWmain.cpp | |
| parent | 9b08de95224c817815c0705f8531cf007553b57e (diff) | |
GLInterface: Fix VideoSW on linux + OSX (v2)
Our Video Software backend isn't OpenGL Core compatible, so we need a flag to alloc a compatible one.
v2: Fix AGL profile selection.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp index 93dd37f03f..12713bcc4e 100644 --- a/Source/Core/VideoBackends/Software/SWmain.cpp +++ b/Source/Core/VideoBackends/Software/SWmain.cpp @@ -78,7 +78,7 @@ bool VideoSoftware::Initialize(void *window_handle) InitInterface(); GLInterface->SetMode(GLInterfaceMode::MODE_DETECT); - if (!GLInterface->Create(window_handle)) + if (!GLInterface->Create(window_handle, false)) { INFO_LOG(VIDEO, "GLInterface::Create failed."); return false; |
