Skip to content
Snippets Groups Projects
Commit c301a1e5 authored by Emmanuel Gil Peyrot's avatar Emmanuel Gil Peyrot Committed by Camilla Löwy
Browse files

wayland: Implement remaining attribute getters

parent e673bdc6
No related branches found
No related tags found
No related merge requests found
......@@ -508,8 +508,8 @@ void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
int* left, int* top,
int* right, int* bottom)
{
// TODO
fprintf(stderr, "_glfwPlatformGetWindowFrameSize not implemented yet\n");
// TODO: will need a proper implementation once decorations are
// implemented, but for now just leave everything as 0.
}
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
......@@ -592,13 +592,12 @@ void _glfwPlatformSetWindowMonitor(_GLFWwindow* window,
int _glfwPlatformWindowFocused(_GLFWwindow* window)
{
// TODO
return GLFW_FALSE;
return _glfw.wl.keyboardFocus == window;
}
int _glfwPlatformWindowIconified(_GLFWwindow* window)
{
// TODO
// TODO: move to xdg_shell, wl_shell doesn't have any iconified concept.
return GLFW_FALSE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment