OpenGL 3+ on OSX with GLFW

This commit is contained in:
archshift 2014-04-30 17:00:36 -07:00
parent a7f3ed003d
commit c1b770cc0d
2 changed files with 10 additions and 1 deletions

View file

@ -30,6 +30,8 @@ void Start() {
/// Initialize the video core
void Init(EmuWindow* emu_window) {
glewExperimental = GL_TRUE;
g_emu_window = emu_window;
g_emu_window->MakeCurrent();
g_renderer = new RendererOpenGL();