Explorar el Código

Fixed check for GL_ARB_multisample.

Camilla Berglund hace 13 años
padre
commit
f274b329d1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/opengl.c

+ 1 - 1
src/opengl.c

@@ -404,7 +404,7 @@ void _glfwRefreshContextParams(void)
     glGetIntegerv(GL_AUX_BUFFERS, &window->auxBuffers);
     glGetBooleanv(GL_STEREO, &window->stereo);
 
-    if (_glfwPlatformExtensionSupported("GL_ARB_multisample"))
+    if (glfwExtensionSupported("GL_ARB_multisample"))
         glGetIntegerv(GL_SAMPLES_ARB, &window->samples);
     else
         window->samples = 0;