mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 21:14:35 +00:00
Formatting.
This commit is contained in:
parent
cf4206d987
commit
1984d40e33
@ -253,7 +253,7 @@ static GLboolean createWindow(_GLFWwindow* window,
|
||||
{
|
||||
unsigned long wamask;
|
||||
XSetWindowAttributes wa;
|
||||
XVisualInfo* visual = _GLFW_X11_CONTEXT_VISUAL;
|
||||
XVisualInfo* vi = _GLFW_X11_CONTEXT_VISUAL;
|
||||
|
||||
// Every window needs a colormap
|
||||
// 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,
|
||||
_glfw.x11.root,
|
||||
visual->visual,
|
||||
vi->visual,
|
||||
AllocNone);
|
||||
|
||||
// Create the actual window
|
||||
@ -282,9 +282,9 @@ static GLboolean createWindow(_GLFWwindow* window,
|
||||
0, 0,
|
||||
wndconfig->width, wndconfig->height,
|
||||
0, // Border width
|
||||
visual->depth, // Color depth
|
||||
vi->depth, // Color depth
|
||||
InputOutput,
|
||||
visual->visual,
|
||||
vi->visual,
|
||||
wamask,
|
||||
&wa);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user