Merge branch 'master' into showwindow

Conflicts:
	src/window.c
This commit is contained in:
Camilla Berglund
2012-09-06 15:11:50 +02:00
21 changed files with 88 additions and 2109 deletions
+6
View File
@@ -85,6 +85,12 @@ void _glfwSetDefaultWindowHints(void)
// The default is to show the window and allow window resizing
_glfwLibrary.hints.resizable = GL_TRUE;
_glfwLibrary.hints.visible = GL_TRUE;
// The default is 24 bits of depth, 8 bits of color
_glfwLibrary.hints.depthBits = 24;
_glfwLibrary.hints.redBits = 8;
_glfwLibrary.hints.greenBits = 8;
_glfwLibrary.hints.blueBits = 8;
}