mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
GLInterface: Fix VideoSW on linux + OSX
Our Video Software backend isn't OpenGL Core compatible, so we need a flag to alloc a compatible one.
This commit is contained in:
parent
52de4cc476
commit
48279c1840
10 changed files with 18 additions and 14 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue