Merge branch 'master' into EGL

Conflicts:
	src/internal.h
	src/opengl.c
	tests/glfwinfo.c
This commit is contained in:
Camilla Berglund
2012-08-02 02:41:57 +02:00
10 changed files with 63 additions and 258 deletions
-1
View File
@@ -42,7 +42,6 @@ typedef struct
static Param parameters[] =
{
{ GLFW_ACCELERATED, "accelerated" },
{ GLFW_RED_BITS, "red bits" },
{ GLFW_GREEN_BITS, "green bits" },
{ GLFW_BLUE_BITS, "blue bits" },
+2 -8
View File
@@ -276,7 +276,7 @@ int main(int argc, char** argv)
printf(" debug");
putchar('\n');
printf("%s flags parsed by GLFW:", get_client_api_name(api));
printf("%s context flags parsed by GLFW:", get_client_api_name(api));
if (glfwGetWindowParam(window, GLFW_OPENGL_FORWARD_COMPAT))
printf(" forward-compatible");
@@ -293,13 +293,7 @@ int main(int argc, char** argv)
mask,
get_profile_name(mask));
printf("%s profile parsed by GLFW:\n", get_client_api_name(api));
if (glfwGetWindowParam(window, GLFW_OPENGL_FORWARD_COMPAT))
printf(" forward-compatible");
if (glfwGetWindowParam(window, GLFW_OPENGL_DEBUG_CONTEXT))
printf(" debug");
putchar('\n');
printf("%s profile mask parsed by GLFW:\n", get_client_api_name(api));
}
}