Ver Fonte

Use glewExperimental on Linux in order to fix GLFW-mode

archshift há 12 anos atrás
pai
commit
d71af1bd20
1 ficheiros alterados com 2 adições e 3 exclusões
  1. 2 3
      src/video_core/video_core.cpp

+ 2 - 3
src/video_core/video_core.cpp

@@ -31,10 +31,9 @@ void Start() {
 /// Initialize the video core
 /// Initialize the video core
 void Init(EmuWindow* emu_window) {
 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;
     glewExperimental = GL_TRUE;
-#endif
 
 
     g_emu_window = emu_window;
     g_emu_window = emu_window;
     g_emu_window->MakeCurrent();
     g_emu_window->MakeCurrent();