1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-11-23 10:48:51 -05:00

Formatting.

This commit is contained in:
Camilla Berglund 2015-06-25 01:23:23 +02:00
parent cf4206d987
commit 1984d40e33

View File

@ -253,7 +253,7 @@ static GLboolean createWindow(_GLFWwindow* window,
{ {
unsigned long wamask; unsigned long wamask;
XSetWindowAttributes wa; XSetWindowAttributes wa;
XVisualInfo* visual = _GLFW_X11_CONTEXT_VISUAL; XVisualInfo* vi = _GLFW_X11_CONTEXT_VISUAL;
// Every window needs a colormap // Every window needs a colormap
// Create one based on the visual used by the current context // Create one based on the visual used by the current context
@ -261,7 +261,7 @@ static GLboolean createWindow(_GLFWwindow* window,
window->x11.colormap = XCreateColormap(_glfw.x11.display, window->x11.colormap = XCreateColormap(_glfw.x11.display,
_glfw.x11.root, _glfw.x11.root,
visual->visual, vi->visual,
AllocNone); AllocNone);
// Create the actual window // Create the actual window
@ -282,9 +282,9 @@ static GLboolean createWindow(_GLFWwindow* window,
0, 0, 0, 0,
wndconfig->width, wndconfig->height, wndconfig->width, wndconfig->height,
0, // Border width 0, // Border width
visual->depth, // Color depth vi->depth, // Color depth
InputOutput, InputOutput,
visual->visual, vi->visual,
wamask, wamask,
&wa); &wa);