mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
Merge pull request #42 from archshift/glexp
Use glewExperimental to fix crashes with citra-glfw
This commit is contained in:
commit
388356f629
1 changed files with 2 additions and 3 deletions
|
@ -31,10 +31,9 @@ void Start() {
|
|||
/// Initialize the video core
|
||||
void Init(EmuWindow* emu_window) {
|
||||
|
||||
#if EMU_PLATFORM == PLATFORM_MACOSX
|
||||
// Known problem with GLEW prevents contexts above 2.x on OSX unless glewExperimental is enabled.
|
||||
// Required in order for GLFW to work on Linux,
|
||||
// or for GL contexts above 2.x on OS X
|
||||
glewExperimental = GL_TRUE;
|
||||
#endif
|
||||
|
||||
g_emu_window = emu_window;
|
||||
g_emu_window->MakeCurrent();
|
||||
|
|
Loading…
Reference in a new issue