mirror of
https://github.com/glfw/glfw.git
synced 2026-09-21 00:30:57 +00:00
Fixed incorrect hint default.
The default for the GLFW_ALPHA_BITS hint was zero instead of 8.
This commit is contained in:
@@ -284,6 +284,7 @@ void glfwDefaultWindowHints(void)
|
||||
_glfw.hints.redBits = 8;
|
||||
_glfw.hints.greenBits = 8;
|
||||
_glfw.hints.blueBits = 8;
|
||||
_glfw.hints.alphaBits = 8;
|
||||
_glfw.hints.depthBits = 24;
|
||||
_glfw.hints.stencilBits = 8;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user