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

Removed content-less comments.

This commit is contained in:
Camilla Berglund 2010-09-16 04:18:22 +02:00
parent 3c85eef0bf
commit 25b22e6b4c

View File

@ -67,7 +67,6 @@ static void initLibraries(void)
static GLboolean initDisplay(void)
{
// Open display
_glfwLibrary.X11.display = XOpenDisplay(0);
if (!_glfwLibrary.X11.display)
{
@ -111,7 +110,6 @@ static GLboolean initDisplay(void)
return GL_FALSE;
}
// Retrieve GLX version
if (!glXQueryVersion(_glfwLibrary.X11.display,
&_glfwLibrary.X11.glxMajor,
&_glfwLibrary.X11.glxMinor))