浏览代码

Use glad booleans in glfwinfo

Camilla Berglund 9 年之前
父节点
当前提交
28889954ef
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      tests/glfwinfo.c

+ 2 - 2
tests/glfwinfo.c

@@ -698,7 +698,7 @@ int main(int argc, char** argv)
                    get_profile_name_glfw(profile));
                    get_profile_name_glfw(profile));
         }
         }
 
 
-        if (glfwExtensionSupported("GL_ARB_robustness"))
+        if (GLAD_GL_ARB_robustness)
         {
         {
             const int robustness = glfwGetWindowAttrib(window, GLFW_CONTEXT_ROBUSTNESS);
             const int robustness = glfwGetWindowAttrib(window, GLFW_CONTEXT_ROBUSTNESS);
             GLint strategy;
             GLint strategy;
@@ -772,7 +772,7 @@ int main(int argc, char** argv)
            redbits, greenbits, bluebits, alphabits, depthbits, stencilbits);
            redbits, greenbits, bluebits, alphabits, depthbits, stencilbits);
 
 
     if (client == GLFW_OPENGL_ES_API ||
     if (client == GLFW_OPENGL_ES_API ||
-        glfwExtensionSupported("GL_ARB_multisample") ||
+        GLAD_GL_ARB_multisample ||
         major > 1 || minor >= 3)
         major > 1 || minor >= 3)
     {
     {
         GLint samples, samplebuffers;
         GLint samples, samplebuffers;