mirror of
https://github.com/glfw/glfw.git
synced 2025-04-06 14:05:07 +00:00
Wayland: Cleanup
This moves what is effectively showing the window to where that is done
on other platforms, i.e. last in the platform CreateWindow function.
(cherry picked from commit 74b4ceb835
)
This commit is contained in:
parent
758d4b1987
commit
be333cf0fd
1 changed files with 6 additions and 6 deletions
|
@ -792,12 +792,6 @@ static GLFWbool createNativeSurface(_GLFWwindow* window,
|
|||
if (!window->wl.transparent)
|
||||
setContentAreaOpaque(window);
|
||||
|
||||
if (window->monitor || wndconfig->visible)
|
||||
{
|
||||
if (!createShellObjects(window))
|
||||
return GLFW_FALSE;
|
||||
}
|
||||
|
||||
return GLFW_TRUE;
|
||||
}
|
||||
|
||||
|
@ -1903,6 +1897,12 @@ int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|||
return GLFW_FALSE;
|
||||
}
|
||||
|
||||
if (window->monitor || wndconfig->visible)
|
||||
{
|
||||
if (!createShellObjects(window))
|
||||
return GLFW_FALSE;
|
||||
}
|
||||
|
||||
return GLFW_TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue