diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 29833a9ddb..75c1d9afd6 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -403,6 +403,12 @@ void Application::initializeGL() { #endif #ifdef WIN32 + static bool isInitialized = false; + if (isInitialized) { + return; + } else { + isInitialized = true; + } GLenum err = glewInit(); if (GLEW_OK != err) { /* Problem: glewInit failed, something is seriously wrong. */