blob: 9fef848d1bf3e12c2688fe10f829c3aeaa084b9b [file] [log] [blame]
Jonas Ådahl8e999962014-03-17 22:53:43 +01001//========================================================================
Camilla Berglund53fafad2016-08-18 23:42:15 +02002// GLFW 3.3 Wayland - www.glfw.org
Jonas Ådahl8e999962014-03-17 22:53:43 +01003//------------------------------------------------------------------------
4// Copyright (c) 2014 Jonas Ådahl <jadahl@gmail.com>
5//
6// This software is provided 'as-is', without any express or implied
7// warranty. In no event will the authors be held liable for any damages
8// arising from the use of this software.
9//
10// Permission is granted to anyone to use this software for any purpose,
11// including commercial applications, and to alter it and redistribute it
12// freely, subject to the following restrictions:
13//
14// 1. The origin of this software must not be misrepresented; you must not
15// claim that you wrote the original software. If you use this software
16// in a product, an acknowledgment in the product documentation would
17// be appreciated but is not required.
18//
19// 2. Altered source versions must be plainly marked as such, and must not
20// be misrepresented as being the original software.
21//
22// 3. This notice may not be removed or altered from any source
23// distribution.
24//
25//========================================================================
26
Camilla Berglund22095d12014-03-19 13:21:19 +010027#include <wayland-client.h>
Jonas Ådahl9ac854b2014-06-29 23:09:21 +020028#include <xkbcommon/xkbcommon.h>
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +000029#ifdef HAVE_XKBCOMMON_COMPOSE_H
Emmanuel Gil Peyrot046d2812016-10-11 00:02:15 +010030#include <xkbcommon/xkbcommon-compose.h>
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +000031#endif
Camilla Berglund9b75bff2015-08-10 20:19:04 +020032#include <dlfcn.h>
33
34typedef VkFlags VkWaylandSurfaceCreateFlagsKHR;
35
36typedef struct VkWaylandSurfaceCreateInfoKHR
37{
38 VkStructureType sType;
39 const void* pNext;
40 VkWaylandSurfaceCreateFlagsKHR flags;
41 struct wl_display* display;
42 struct wl_surface* surface;
43} VkWaylandSurfaceCreateInfoKHR;
44
45typedef VkResult (APIENTRY *PFN_vkCreateWaylandSurfaceKHR)(VkInstance,const VkWaylandSurfaceCreateInfoKHR*,const VkAllocationCallbacks*,VkSurfaceKHR*);
46typedef VkBool32 (APIENTRY *PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR)(VkPhysicalDevice,uint32_t,struct wl_display*);
Camilla Berglund22095d12014-03-19 13:21:19 +010047
Camilla Löwya3007b92017-05-25 19:25:47 +020048#include "posix_thread.h"
Camilla Berglund38ae3192015-05-27 15:06:52 +020049#include "posix_time.h"
Greg V0a3c4f52018-03-19 22:08:22 +030050#ifdef __linux__
Camilla Berglund38ae3192015-05-27 15:06:52 +020051#include "linux_joystick.h"
Greg V0a3c4f52018-03-19 22:08:22 +030052#else
53#include "null_joystick.h"
54#endif
Camilla Berglund38ae3192015-05-27 15:06:52 +020055#include "xkb_unicode.h"
Camilla Berglundef80bea2016-03-28 13:19:31 +020056#include "egl_context.h"
Emmanuel Gil Peyrot0e0862c2017-03-03 17:51:40 +000057#include "osmesa_context.h"
Jonas Ådahl8e999962014-03-17 22:53:43 +010058
Emmanuel Gil Peyrot73567ae2017-12-03 03:59:12 +010059#include "wayland-xdg-shell-client-protocol.h"
Emmanuel Gil Peyrotdcd2a192018-10-01 15:05:55 +020060#include "wayland-xdg-decoration-client-protocol.h"
Emmanuel Gil Peyrot79e16ba2017-12-19 19:04:28 +010061#include "wayland-viewporter-client-protocol.h"
Jonas Ådahlcb08dc52015-12-09 15:29:37 +080062#include "wayland-relative-pointer-unstable-v1-client-protocol.h"
63#include "wayland-pointer-constraints-unstable-v1-client-protocol.h"
Emmanuel Gil Peyrot65166852017-02-17 15:52:50 +000064#include "wayland-idle-inhibit-unstable-v1-client-protocol.h"
Jonas Ådahlcb08dc52015-12-09 15:29:37 +080065
Camilla Berglund9b75bff2015-08-10 20:19:04 +020066#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
67#define _glfw_dlclose(handle) dlclose(handle)
68#define _glfw_dlsym(handle, name) dlsym(handle, name)
69
Camilla Berglund02fdd642015-12-02 23:53:50 +010070#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->wl.native)
71#define _GLFW_EGL_NATIVE_DISPLAY ((EGLNativeDisplayType) _glfw.wl.display)
Jonas Ådahl8e999962014-03-17 22:53:43 +010072
Camilla Berglundede7a582014-03-19 16:20:32 +010073#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowWayland wl
74#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryWayland wl
75#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorWayland wl
Camilla Berglund7a4623e2014-03-27 17:29:22 +010076#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorWayland wl
Jonas Ådahl8e999962014-03-17 22:53:43 +010077
Camilla Berglundef80bea2016-03-28 13:19:31 +020078#define _GLFW_PLATFORM_CONTEXT_STATE
79#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE
80
Emmanuel Gil Peyrot407a3e22018-01-05 21:58:10 +010081struct wl_cursor_image {
82 uint32_t width;
83 uint32_t height;
84 uint32_t hotspot_x;
85 uint32_t hotspot_y;
86 uint32_t delay;
87};
88struct wl_cursor {
89 unsigned int image_count;
90 struct wl_cursor_image** images;
91 char* name;
92};
93typedef struct wl_cursor_theme* (* PFN_wl_cursor_theme_load)(const char*, int, struct wl_shm*);
94typedef void (* PFN_wl_cursor_theme_destroy)(struct wl_cursor_theme*);
95typedef struct wl_cursor* (* PFN_wl_cursor_theme_get_cursor)(struct wl_cursor_theme*, const char*);
96typedef struct wl_buffer* (* PFN_wl_cursor_image_get_buffer)(struct wl_cursor_image*);
97#define wl_cursor_theme_load _glfw.wl.cursor.theme_load
98#define wl_cursor_theme_destroy _glfw.wl.cursor.theme_destroy
99#define wl_cursor_theme_get_cursor _glfw.wl.cursor.theme_get_cursor
100#define wl_cursor_image_get_buffer _glfw.wl.cursor.image_get_buffer
101
Emmanuel Gil Peyrot5fbf4dd2018-01-05 21:33:40 +0100102typedef struct wl_egl_window* (* PFN_wl_egl_window_create)(struct wl_surface*, int, int);
103typedef void (* PFN_wl_egl_window_destroy)(struct wl_egl_window*);
104typedef void (* PFN_wl_egl_window_resize)(struct wl_egl_window*, int, int, int, int);
105#define wl_egl_window_create _glfw.wl.egl.window_create
106#define wl_egl_window_destroy _glfw.wl.egl.window_destroy
107#define wl_egl_window_resize _glfw.wl.egl.window_resize
108
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100109typedef struct xkb_context* (* PFN_xkb_context_new)(enum xkb_context_flags);
110typedef void (* PFN_xkb_context_unref)(struct xkb_context*);
111typedef struct xkb_keymap* (* PFN_xkb_keymap_new_from_string)(struct xkb_context*, const char*, enum xkb_keymap_format, enum xkb_keymap_compile_flags);
112typedef void (* PFN_xkb_keymap_unref)(struct xkb_keymap*);
113typedef xkb_mod_index_t (* PFN_xkb_keymap_mod_get_index)(struct xkb_keymap*, const char*);
Emmanuel Gil Peyrot8bc0c5c2018-02-12 09:32:13 +0100114typedef int (* PFN_xkb_keymap_key_repeats)(struct xkb_keymap*, xkb_keycode_t);
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100115typedef struct xkb_state* (* PFN_xkb_state_new)(struct xkb_keymap*);
116typedef void (* PFN_xkb_state_unref)(struct xkb_state*);
117typedef int (* PFN_xkb_state_key_get_syms)(struct xkb_state*, xkb_keycode_t, const xkb_keysym_t**);
118typedef enum xkb_state_component (* PFN_xkb_state_update_mask)(struct xkb_state*, xkb_mod_mask_t, xkb_mod_mask_t, xkb_mod_mask_t, xkb_layout_index_t, xkb_layout_index_t, xkb_layout_index_t);
119typedef xkb_mod_mask_t (* PFN_xkb_state_serialize_mods)(struct xkb_state*, enum xkb_state_component);
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100120#define xkb_context_new _glfw.wl.xkb.context_new
121#define xkb_context_unref _glfw.wl.xkb.context_unref
122#define xkb_keymap_new_from_string _glfw.wl.xkb.keymap_new_from_string
123#define xkb_keymap_unref _glfw.wl.xkb.keymap_unref
124#define xkb_keymap_mod_get_index _glfw.wl.xkb.keymap_mod_get_index
Emmanuel Gil Peyrot8bc0c5c2018-02-12 09:32:13 +0100125#define xkb_keymap_key_repeats _glfw.wl.xkb.keymap_key_repeats
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100126#define xkb_state_new _glfw.wl.xkb.state_new
127#define xkb_state_unref _glfw.wl.xkb.state_unref
128#define xkb_state_key_get_syms _glfw.wl.xkb.state_key_get_syms
129#define xkb_state_update_mask _glfw.wl.xkb.state_update_mask
130#define xkb_state_serialize_mods _glfw.wl.xkb.state_serialize_mods
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000131
132#ifdef HAVE_XKBCOMMON_COMPOSE_H
133typedef struct xkb_compose_table* (* PFN_xkb_compose_table_new_from_locale)(struct xkb_context*, const char*, enum xkb_compose_compile_flags);
134typedef void (* PFN_xkb_compose_table_unref)(struct xkb_compose_table*);
135typedef struct xkb_compose_state* (* PFN_xkb_compose_state_new)(struct xkb_compose_table*, enum xkb_compose_state_flags);
136typedef void (* PFN_xkb_compose_state_unref)(struct xkb_compose_state*);
137typedef enum xkb_compose_feed_result (* PFN_xkb_compose_state_feed)(struct xkb_compose_state*, xkb_keysym_t);
138typedef enum xkb_compose_status (* PFN_xkb_compose_state_get_status)(struct xkb_compose_state*);
139typedef xkb_keysym_t (* PFN_xkb_compose_state_get_one_sym)(struct xkb_compose_state*);
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100140#define xkb_compose_table_new_from_locale _glfw.wl.xkb.compose_table_new_from_locale
141#define xkb_compose_table_unref _glfw.wl.xkb.compose_table_unref
142#define xkb_compose_state_new _glfw.wl.xkb.compose_state_new
143#define xkb_compose_state_unref _glfw.wl.xkb.compose_state_unref
144#define xkb_compose_state_feed _glfw.wl.xkb.compose_state_feed
145#define xkb_compose_state_get_status _glfw.wl.xkb.compose_state_get_status
146#define xkb_compose_state_get_one_sym _glfw.wl.xkb.compose_state_get_one_sym
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000147#endif
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100148
Emmanuel Gil Peyrot9f7ec6b2017-12-19 20:58:03 +0100149#define _GLFW_DECORATION_WIDTH 4
150#define _GLFW_DECORATION_TOP 24
Emmanuel Gil Peyrot60e82ba2017-12-22 18:22:36 +0100151#define _GLFW_DECORATION_VERTICAL (_GLFW_DECORATION_TOP + _GLFW_DECORATION_WIDTH)
152#define _GLFW_DECORATION_HORIZONTAL (2 * _GLFW_DECORATION_WIDTH)
Emmanuel Gil Peyrot9f7ec6b2017-12-19 20:58:03 +0100153
154typedef enum _GLFWdecorationSideWayland
155{
156 mainWindow,
157 topDecoration,
158 leftDecoration,
159 rightDecoration,
160 bottomDecoration,
161
162} _GLFWdecorationSideWayland;
163
164typedef struct _GLFWdecorationWayland
165{
166 struct wl_surface* surface;
167 struct wl_subsurface* subsurface;
168 struct wp_viewport* viewport;
169
170} _GLFWdecorationWayland;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100171
Camilla Berglundf8d80a92014-09-02 19:42:43 +0200172// Wayland-specific per-window data
173//
Jonas Ådahl8e999962014-03-17 22:53:43 +0100174typedef struct _GLFWwindowWayland
175{
176 int width, height;
Camilla Berglund0eccf752015-08-23 19:30:04 +0200177 GLFWbool visible;
Emmanuel Gil Peyrote673bdc2016-04-09 00:54:23 +0100178 GLFWbool maximized;
Camilla Löwyee9dffc2018-01-04 13:50:58 +0100179 GLFWbool hovered;
Emmanuel Gil Peyrot95e282d2017-10-01 01:38:00 +0100180 GLFWbool transparent;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100181 struct wl_surface* surface;
182 struct wl_egl_window* native;
Emmanuel Gil Peyrota49601b2016-10-01 20:05:29 +0100183 struct wl_shell_surface* shellSurface;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100184 struct wl_callback* callback;
Emmanuel Gil Peyrot06479ba2015-10-10 16:35:06 +0100185
Emmanuel Gil Peyrot73567ae2017-12-03 03:59:12 +0100186 struct {
187 struct xdg_surface* surface;
188 struct xdg_toplevel* toplevel;
Emmanuel Gil Peyrotdcd2a192018-10-01 15:05:55 +0200189 struct zxdg_toplevel_decoration_v1* decoration;
Emmanuel Gil Peyrot73567ae2017-12-03 03:59:12 +0100190 } xdg;
191
Ricardo Vieira25204b12014-09-09 16:37:55 +0200192 _GLFWcursor* currentCursor;
Emmanuel Gil Peyrote253bea2015-04-15 18:18:42 +0200193 double cursorPosX, cursorPosY;
Emmanuel Gil Peyrot06479ba2015-10-10 16:35:06 +0100194
Emmanuel Gil Peyrot5034c6c2016-04-09 00:51:48 +0100195 char* title;
196
Emmanuel Gil Peyrot06479ba2015-10-10 16:35:06 +0100197 // We need to track the monitors the window spans on to calculate the
198 // optimal scaling factor.
199 int scale;
200 _GLFWmonitor** monitors;
201 int monitorsCount;
202 int monitorsSize;
Camilla Berglund9b75bff2015-08-10 20:19:04 +0200203
Jonas Ådahlcb08dc52015-12-09 15:29:37 +0800204 struct {
205 struct zwp_relative_pointer_v1* relativePointer;
206 struct zwp_locked_pointer_v1* lockedPointer;
207 } pointerLock;
Emmanuel Gil Peyrot65166852017-02-17 15:52:50 +0000208
209 struct zwp_idle_inhibitor_v1* idleInhibitor;
210
Emmanuel Gil Peyrot45bd9912019-02-15 18:12:06 +0100211 GLFWbool wasFullscreen;
Emmanuel Gil Peyroteb7c9992018-01-19 00:24:57 +0100212
Emmanuel Gil Peyrot9f7ec6b2017-12-19 20:58:03 +0100213 struct {
Emmanuel Gil Peyrotdcd2a192018-10-01 15:05:55 +0200214 GLFWbool serverSide;
Emmanuel Gil Peyrot9f7ec6b2017-12-19 20:58:03 +0100215 struct wl_buffer* buffer;
216 _GLFWdecorationWayland top, left, right, bottom;
217 int focus;
218 } decorations;
219
Jonas Ådahl8e999962014-03-17 22:53:43 +0100220} _GLFWwindowWayland;
221
Camilla Berglundf8d80a92014-09-02 19:42:43 +0200222// Wayland-specific global data
223//
Jonas Ådahl8e999962014-03-17 22:53:43 +0100224typedef struct _GLFWlibraryWayland
225{
226 struct wl_display* display;
227 struct wl_registry* registry;
228 struct wl_compositor* compositor;
Emmanuel Gil Peyrot552e40a2017-12-19 19:04:52 +0100229 struct wl_subcompositor* subcompositor;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100230 struct wl_shell* shell;
Ricardo Vieira25204b12014-09-09 16:37:55 +0200231 struct wl_shm* shm;
Jonas Ådahla75cf5a2014-06-29 12:29:00 +0200232 struct wl_seat* seat;
233 struct wl_pointer* pointer;
234 struct wl_keyboard* keyboard;
Emmanuel Gil Peyrot3c4b9a72018-10-10 19:06:11 +0200235 struct wl_data_device_manager* dataDeviceManager;
236 struct wl_data_device* dataDevice;
237 struct wl_data_offer* dataOffer;
Emmanuel Gil Peyrotc08abff2018-10-10 20:31:26 +0200238 struct wl_data_source* dataSource;
Emmanuel Gil Peyrot73567ae2017-12-03 03:59:12 +0100239 struct xdg_wm_base* wmBase;
Emmanuel Gil Peyrotdcd2a192018-10-01 15:05:55 +0200240 struct zxdg_decoration_manager_v1* decorationManager;
Emmanuel Gil Peyrot79e16ba2017-12-19 19:04:28 +0100241 struct wp_viewporter* viewporter;
Jonas Ådahlcb08dc52015-12-09 15:29:37 +0800242 struct zwp_relative_pointer_manager_v1* relativePointerManager;
243 struct zwp_pointer_constraints_v1* pointerConstraints;
Emmanuel Gil Peyrot65166852017-02-17 15:52:50 +0000244 struct zwp_idle_inhibit_manager_v1* idleInhibitManager;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100245
Emmanuel Gil Peyrota49601b2016-10-01 20:05:29 +0100246 int compositorVersion;
Emmanuel Gil Peyrotc14a35e2017-11-17 01:24:01 +0000247 int seatVersion;
Jonas Ådahlcf6c11c2015-12-27 10:42:45 +0800248
Ricardo Vieira25204b12014-09-09 16:37:55 +0200249 struct wl_cursor_theme* cursorTheme;
Emmanuel Gil Peyrot32106282018-09-11 14:18:52 +0200250 struct wl_cursor_theme* cursorThemeHiDPI;
Ricardo Vieira25204b12014-09-09 16:37:55 +0200251 struct wl_surface* cursorSurface;
Emmanuel Gil Peyrotdede6d62018-09-08 20:01:04 +0200252 int cursorTimerfd;
Ricardo Vieira92b3fd02014-09-23 18:24:33 +0100253 uint32_t serial;
Ricardo Vieira25204b12014-09-09 16:37:55 +0200254
Emmanuel Gil Peyrotc14a35e2017-11-17 01:24:01 +0000255 int32_t keyboardRepeatRate;
256 int32_t keyboardRepeatDelay;
Emmanuel Gil Peyrot90f5edc2018-01-30 16:22:25 +0100257 int keyboardLastKey;
258 int keyboardLastScancode;
Emmanuel Gil Peyrot8b54e282018-10-10 19:21:26 +0200259 char* clipboardString;
260 size_t clipboardSize;
Emmanuel Gil Peyrotc08abff2018-10-10 20:31:26 +0200261 char* clipboardSendString;
262 size_t clipboardSendSize;
Emmanuel Gil Peyrot90f5edc2018-01-30 16:22:25 +0100263 int timerfd;
Camilla Berglunde6a32db2016-09-07 15:43:39 +0200264 short int keycodes[256];
265 short int scancodes[GLFW_KEY_LAST + 1];
Camilla Berglund580c7da2015-11-12 15:06:46 +0100266
Jonas Ådahl9ac854b2014-06-29 23:09:21 +0200267 struct {
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100268 void* handle;
Jonas Ådahl9ac854b2014-06-29 23:09:21 +0200269 struct xkb_context* context;
270 struct xkb_keymap* keymap;
271 struct xkb_state* state;
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000272
273#ifdef HAVE_XKBCOMMON_COMPOSE_H
Emmanuel Gil Peyrot046d2812016-10-11 00:02:15 +0100274 struct xkb_compose_state* composeState;
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000275#endif
276
Emmanuel Gil Peyrota49601b2016-10-01 20:05:29 +0100277 xkb_mod_mask_t controlMask;
278 xkb_mod_mask_t altMask;
279 xkb_mod_mask_t shiftMask;
280 xkb_mod_mask_t superMask;
Camilla Löwy0e8c4ea2017-11-29 20:42:37 +0100281 xkb_mod_mask_t capsLockMask;
282 xkb_mod_mask_t numLockMask;
Jonas Ådahl9ac854b2014-06-29 23:09:21 +0200283 unsigned int modifiers;
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100284
285 PFN_xkb_context_new context_new;
286 PFN_xkb_context_unref context_unref;
287 PFN_xkb_keymap_new_from_string keymap_new_from_string;
288 PFN_xkb_keymap_unref keymap_unref;
289 PFN_xkb_keymap_mod_get_index keymap_mod_get_index;
Emmanuel Gil Peyrot8bc0c5c2018-02-12 09:32:13 +0100290 PFN_xkb_keymap_key_repeats keymap_key_repeats;
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100291 PFN_xkb_state_new state_new;
292 PFN_xkb_state_unref state_unref;
293 PFN_xkb_state_key_get_syms state_key_get_syms;
294 PFN_xkb_state_update_mask state_update_mask;
295 PFN_xkb_state_serialize_mods state_serialize_mods;
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000296
297#ifdef HAVE_XKBCOMMON_COMPOSE_H
Emmanuel Gil Peyrota7a70cf2017-08-26 19:25:24 +0100298 PFN_xkb_compose_table_new_from_locale compose_table_new_from_locale;
299 PFN_xkb_compose_table_unref compose_table_unref;
300 PFN_xkb_compose_state_new compose_state_new;
301 PFN_xkb_compose_state_unref compose_state_unref;
302 PFN_xkb_compose_state_feed compose_state_feed;
303 PFN_xkb_compose_state_get_status compose_state_get_status;
304 PFN_xkb_compose_state_get_one_sym compose_state_get_one_sym;
Emmanuel Gil Peyrotd1843132017-11-16 16:42:11 +0000305#endif
Jonas Ådahl9ac854b2014-06-29 23:09:21 +0200306 } xkb;
307
Jonas Ådahla75cf5a2014-06-29 12:29:00 +0200308 _GLFWwindow* pointerFocus;
309 _GLFWwindow* keyboardFocus;
Camilla Berglundf8d80a92014-09-02 19:42:43 +0200310
Emmanuel Gil Peyrot5fbf4dd2018-01-05 21:33:40 +0100311 struct {
312 void* handle;
313
Emmanuel Gil Peyrot407a3e22018-01-05 21:58:10 +0100314 PFN_wl_cursor_theme_load theme_load;
315 PFN_wl_cursor_theme_destroy theme_destroy;
316 PFN_wl_cursor_theme_get_cursor theme_get_cursor;
317 PFN_wl_cursor_image_get_buffer image_get_buffer;
318 } cursor;
319
320 struct {
321 void* handle;
322
Emmanuel Gil Peyrot5fbf4dd2018-01-05 21:33:40 +0100323 PFN_wl_egl_window_create window_create;
324 PFN_wl_egl_window_destroy window_destroy;
325 PFN_wl_egl_window_resize window_resize;
326 } egl;
327
Jonas Ådahl8e999962014-03-17 22:53:43 +0100328} _GLFWlibraryWayland;
329
Camilla Berglundf8d80a92014-09-02 19:42:43 +0200330// Wayland-specific per-monitor data
331//
Jonas Ådahl8e999962014-03-17 22:53:43 +0100332typedef struct _GLFWmonitorWayland
333{
334 struct wl_output* output;
Emmanuel Gil Peyrotd6b9d002018-02-24 22:18:39 +0100335 int name;
Camilla Löwy04f559e2016-12-05 01:19:48 +0100336 int currentMode;
Jonas Ådahl8e999962014-03-17 22:53:43 +0100337
338 int x;
339 int y;
Emmanuel Gil Peyrot06479ba2015-10-10 16:35:06 +0100340 int scale;
Camilla Löwy04f559e2016-12-05 01:19:48 +0100341
Jonas Ådahl8e999962014-03-17 22:53:43 +0100342} _GLFWmonitorWayland;
343
Camilla Berglundf8d80a92014-09-02 19:42:43 +0200344// Wayland-specific per-cursor data
345//
Camilla Berglund7a4623e2014-03-27 17:29:22 +0100346typedef struct _GLFWcursorWayland
347{
Emmanuel Gil Peyrot5ea6e6c2018-09-08 20:05:40 +0200348 struct wl_cursor* cursor;
Emmanuel Gil Peyrot15cad022018-09-11 14:24:43 +0200349 struct wl_cursor* cursorHiDPI;
Ricardo Vieira25204b12014-09-09 16:37:55 +0200350 struct wl_buffer* buffer;
351 int width, height;
352 int xhot, yhot;
Emmanuel Gil Peyrot5ea6e6c2018-09-08 20:05:40 +0200353 int currentImage;
Camilla Berglund7a4623e2014-03-27 17:29:22 +0100354} _GLFWcursorWayland;
355
Jonas Ådahl8e999962014-03-17 22:53:43 +0100356
Camilla Berglund12b6c562015-12-03 18:16:46 +0100357void _glfwAddOutputWayland(uint32_t name, uint32_t version);
Jonas Ådahl8e999962014-03-17 22:53:43 +0100358