From f31038599706be9dc2597b9a3a267ca5c8217fa5 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Mon, 7 Mar 2011 20:49:27 +0100 Subject: [PATCH] ARB, not EXT. --- src/win32/win32_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32/win32_window.c b/src/win32/win32_window.c index 317371eb..91f437b0 100644 --- a/src/win32/win32_window.c +++ b/src/win32/win32_window.c @@ -1089,7 +1089,7 @@ static void initWGLExtensions(_GLFWwindow* window) window->WGL.has_WGL_ARB_create_context = GL_FALSE; window->WGL.has_WGL_ARB_create_context_profile = GL_FALSE; window->WGL.has_WGL_EXT_create_context_es2_profile = GL_FALSE; - window->WGL.has_WGL_EXT_create_context_robustness = GL_FALSE; + window->WGL.has_WGL_ARB_create_context_robustness = GL_FALSE; window->WGL.has_WGL_EXT_swap_control = GL_FALSE; window->WGL.has_WGL_ARB_pixel_format = GL_FALSE; @@ -1131,7 +1131,7 @@ static void initWGLExtensions(_GLFWwindow* window) if (window->WGL.has_WGL_ARB_create_context) { if (_glfwPlatformExtensionSupported("WGL_ARB_create_context_robustness")) - window->WGL.has_WGL_EXT_create_context_robustness = GL_TRUE; + window->WGL.has_WGL_ARB_create_context_robustness = GL_TRUE; } if (_glfwPlatformExtensionSupported("WGL_EXT_swap_control"))