1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00

Use glad booleans in glfwinfo

This commit is contained in:
Camilla Berglund 2016-09-26 14:55:55 +02:00
parent f0a55df963
commit 28889954ef

View File

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