mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 04:54:35 +00:00
Improved output of OpenGL bitmasks.
This commit is contained in:
parent
669c40f102
commit
6c86149bad
@ -249,7 +249,7 @@ int main(int argc, char** argv)
|
|||||||
if (major >= 3)
|
if (major >= 3)
|
||||||
{
|
{
|
||||||
glGetIntegerv(GL_CONTEXT_FLAGS, &flags);
|
glGetIntegerv(GL_CONTEXT_FLAGS, &flags);
|
||||||
printf("OpenGL context flags:");
|
printf("OpenGL context flags (0x%08x):", flags);
|
||||||
|
|
||||||
if (flags & GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT)
|
if (flags & GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT)
|
||||||
puts(" forward-compatible");
|
puts(" forward-compatible");
|
||||||
@ -263,7 +263,7 @@ int main(int argc, char** argv)
|
|||||||
if (major > 3 || (major == 3 && minor >= 2))
|
if (major > 3 || (major == 3 && minor >= 2))
|
||||||
{
|
{
|
||||||
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &mask);
|
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &mask);
|
||||||
printf("OpenGL profile mask: %s (0x%08x)\n", get_profile_name(mask), mask);
|
printf("OpenGL profile mask (0x%08x): %s\n", mask, get_profile_name(mask));
|
||||||
|
|
||||||
printf("OpenGL profile parsed by GLFW: %s\n",
|
printf("OpenGL profile parsed by GLFW: %s\n",
|
||||||
get_glfw_profile_name(glfwGetWindowParam(window, GLFW_OPENGL_PROFILE)));
|
get_glfw_profile_name(glfwGetWindowParam(window, GLFW_OPENGL_PROFILE)));
|
||||||
|
Loading…
Reference in New Issue
Block a user