2014-03-17 21:53:43 +00:00
|
|
|
//========================================================================
|
|
|
|
// GLFW 3.1 Wayland - www.glfw.org
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2014 Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#ifndef _wayland_platform_h_
|
|
|
|
#define _wayland_platform_h_
|
|
|
|
|
|
|
|
|
2014-03-19 12:21:19 +00:00
|
|
|
#include <wayland-client.h>
|
|
|
|
|
|
|
|
#if defined(_GLFW_EGL)
|
2014-04-08 14:25:35 +00:00
|
|
|
#include "egl_context.h"
|
2014-03-19 12:21:19 +00:00
|
|
|
#else
|
2014-03-17 21:53:43 +00:00
|
|
|
#error "The Wayland backend depends on EGL platform support"
|
|
|
|
#endif
|
|
|
|
|
2014-04-08 15:42:49 +00:00
|
|
|
#include "posix_tls.h"
|
2014-03-27 15:08:06 +00:00
|
|
|
#include "posix_time.h"
|
2014-03-27 16:19:22 +00:00
|
|
|
#include "linux_joystick.h"
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW window->wl.native
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY _glfw.wl.display
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowWayland wl
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryWayland wl
|
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorWayland wl
|
2014-03-27 16:29:22 +00:00
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorWayland wl
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GLFWvidmodeWayland _GLFWvidmodeWayland;
|
|
|
|
|
|
|
|
typedef struct _GLFWwindowWayland
|
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
GLboolean visible;
|
|
|
|
struct wl_surface* surface;
|
|
|
|
struct wl_egl_window* native;
|
|
|
|
struct wl_shell_surface* shell_surface;
|
|
|
|
EGLSurface egl_surface;
|
|
|
|
struct wl_callback* callback;
|
|
|
|
} _GLFWwindowWayland;
|
|
|
|
|
|
|
|
typedef struct _GLFWlibraryWayland
|
|
|
|
{
|
|
|
|
struct wl_display* display;
|
|
|
|
struct wl_registry* registry;
|
|
|
|
struct wl_compositor* compositor;
|
|
|
|
struct wl_shell* shell;
|
2014-06-29 10:29:00 +00:00
|
|
|
struct wl_seat* seat;
|
|
|
|
struct wl_pointer* pointer;
|
|
|
|
struct wl_keyboard* keyboard;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
_GLFWmonitor** monitors;
|
|
|
|
int monitorsCount;
|
|
|
|
int monitorsSize;
|
|
|
|
|
2014-06-29 10:29:00 +00:00
|
|
|
_GLFWwindow* pointerFocus;
|
|
|
|
_GLFWwindow* keyboardFocus;
|
2014-03-17 21:53:43 +00:00
|
|
|
} _GLFWlibraryWayland;
|
|
|
|
|
|
|
|
typedef struct _GLFWmonitorWayland
|
|
|
|
{
|
|
|
|
struct wl_output* output;
|
|
|
|
|
|
|
|
_GLFWvidmodeWayland* modes;
|
|
|
|
int modesCount;
|
|
|
|
int modesSize;
|
|
|
|
GLboolean done;
|
|
|
|
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
} _GLFWmonitorWayland;
|
|
|
|
|
2014-03-27 16:29:22 +00:00
|
|
|
typedef struct _GLFWcursorWayland
|
|
|
|
{
|
|
|
|
int dummy;
|
|
|
|
} _GLFWcursorWayland;
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform specific internal functions
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
void _glfwAddOutput(uint32_t name, uint32_t version);
|
|
|
|
|
|
|
|
#endif // _wayland_platform_h_
|