mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 13:04:35 +00:00
Wayland: Add tracking of XDG fullscreen state
(cherry picked from commit afb127769a
)
This commit is contained in:
parent
51018f19d0
commit
ebe2b648ea
@ -182,6 +182,7 @@ typedef struct _GLFWwindowWayland
|
|||||||
GLFWbool visible;
|
GLFWbool visible;
|
||||||
GLFWbool maximized;
|
GLFWbool maximized;
|
||||||
GLFWbool activated;
|
GLFWbool activated;
|
||||||
|
GLFWbool fullscreen;
|
||||||
GLFWbool hovered;
|
GLFWbool hovered;
|
||||||
GLFWbool transparent;
|
GLFWbool transparent;
|
||||||
struct wl_surface* surface;
|
struct wl_surface* surface;
|
||||||
|
@ -566,6 +566,7 @@ static void xdgToplevelHandleConfigure(void* userData,
|
|||||||
|
|
||||||
window->wl.activated = activated;
|
window->wl.activated = activated;
|
||||||
window->wl.maximized = maximized;
|
window->wl.maximized = maximized;
|
||||||
|
window->wl.fullscreen = fullscreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xdgToplevelHandleClose(void* userData,
|
static void xdgToplevelHandleClose(void* userData,
|
||||||
|
Loading…
Reference in New Issue
Block a user