2014-11-06 03:26:16 -05:00
|
|
|
//========================================================================
|
2015-06-01 16:55:06 -04:00
|
|
|
// GLFW 3.2 Mir - www.glfw.org
|
2014-11-06 03:26:16 -05:00
|
|
|
//------------------------------------------------------------------------
|
2015-07-30 13:59:32 -04:00
|
|
|
// Copyright (c) 2014-2015 Brandon Schaefer <brandon.schaefer@canonical.com>
|
2014-11-06 03:26:16 -05:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2015-06-07 13:32:24 -04:00
|
|
|
#ifndef _glfw3_mir_platform_h_
|
|
|
|
#define _glfw3_mir_platform_h_
|
2014-11-06 03:21:12 -05:00
|
|
|
|
2015-05-27 09:06:52 -04:00
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <pthread.h>
|
2015-08-10 14:19:04 -04:00
|
|
|
#include <dlfcn.h>
|
2015-05-27 09:06:52 -04:00
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
#include <mir_toolkit/mir_client_library.h>
|
|
|
|
|
2015-08-10 14:19:04 -04:00
|
|
|
typedef VkFlags VkMirSurfaceCreateFlagsKHR;
|
|
|
|
|
|
|
|
typedef struct VkMirSurfaceCreateInfoKHR
|
|
|
|
{
|
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
|
|
|
VkMirSurfaceCreateFlagsKHR flags;
|
|
|
|
MirConnection* connection;
|
|
|
|
MirSurface* mirSurface;
|
|
|
|
} VkMirSurfaceCreateInfoKHR;
|
|
|
|
|
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMirSurfaceKHR)(VkInstance,const VkMirSurfaceCreateInfoKHR*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
|
|
|
typedef VkBool32 (APIENTRY *PFN_vkGetPhysicalDeviceMirPresentationSupportKHR)(VkPhysicalDevice,uint32_t,MirConnection*);
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
#include "posix_tls.h"
|
|
|
|
#include "posix_time.h"
|
|
|
|
#include "linux_joystick.h"
|
2015-05-27 09:06:52 -04:00
|
|
|
#include "xkb_unicode.h"
|
2016-03-28 07:19:31 -04:00
|
|
|
#include "egl_context.h"
|
2014-11-06 03:21:12 -05:00
|
|
|
|
2015-08-10 14:19:04 -04:00
|
|
|
#define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL)
|
|
|
|
#define _glfw_dlclose(handle) dlclose(handle)
|
|
|
|
#define _glfw_dlsym(handle, name) dlsym(handle, name)
|
|
|
|
|
2015-12-02 17:53:50 -05:00
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->mir.window)
|
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY ((EGLNativeDisplayType) _glfw.mir.display)
|
2014-11-06 03:21:12 -05:00
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowMir mir
|
|
|
|
#define _GLFW_PLATFORM_MONITOR_STATE _GLFWmonitorMir mir
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryMir mir
|
|
|
|
#define _GLFW_PLATFORM_CURSOR_STATE _GLFWcursorMir mir
|
2014-11-06 03:21:12 -05:00
|
|
|
|
2016-03-28 07:19:31 -04:00
|
|
|
#define _GLFW_PLATFORM_CONTEXT_STATE
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE
|
|
|
|
|
2015-05-27 09:06:52 -04:00
|
|
|
|
2014-11-10 12:42:41 -05:00
|
|
|
// Mir-specific Event Queue
|
|
|
|
//
|
|
|
|
typedef struct EventQueue
|
|
|
|
{
|
|
|
|
TAILQ_HEAD(, EventNode) head;
|
|
|
|
} EventQueue;
|
2014-11-06 17:52:38 -05:00
|
|
|
|
|
|
|
// Mir-specific per-window data
|
|
|
|
//
|
2014-11-06 03:21:12 -05:00
|
|
|
typedef struct _GLFWwindowMir
|
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
MirSurface* surface;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
MirEGLNativeWindowType window;
|
2014-11-06 03:23:02 -05:00
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
} _GLFWwindowMir;
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
// Mir-specific per-monitor data
|
|
|
|
//
|
2014-11-06 03:21:12 -05:00
|
|
|
typedef struct _GLFWmonitorMir
|
|
|
|
{
|
2014-11-06 03:28:17 -05:00
|
|
|
int cur_mode;
|
2014-11-06 03:26:39 -05:00
|
|
|
int output_id;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
} _GLFWmonitorMir;
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
// Mir-specific global data
|
|
|
|
//
|
2014-11-06 03:21:12 -05:00
|
|
|
typedef struct _GLFWlibraryMir
|
|
|
|
{
|
2014-11-06 17:52:38 -05:00
|
|
|
MirConnection* connection;
|
|
|
|
MirEGLNativeDisplayType display;
|
2015-07-30 13:59:32 -04:00
|
|
|
MirCursorConfiguration* default_conf;
|
2014-11-10 12:42:41 -05:00
|
|
|
EventQueue* event_queue;
|
|
|
|
|
2015-11-12 09:06:46 -05:00
|
|
|
short int publicKeys[256];
|
|
|
|
|
2014-11-10 12:42:41 -05:00
|
|
|
pthread_mutex_t event_mutex;
|
|
|
|
pthread_cond_t event_cond;
|
2014-11-06 03:23:02 -05:00
|
|
|
|
2014-11-06 03:21:12 -05:00
|
|
|
} _GLFWlibraryMir;
|
|
|
|
|
2014-11-06 17:52:38 -05:00
|
|
|
// Mir-specific per-cursor data
|
2015-01-05 15:55:15 -05:00
|
|
|
// TODO: Only system cursors are implemented in Mir atm. Need to wait for support.
|
2014-11-06 17:52:38 -05:00
|
|
|
//
|
2014-11-06 03:21:12 -05:00
|
|
|
typedef struct _GLFWcursorMir
|
|
|
|
{
|
2015-07-30 13:59:32 -04:00
|
|
|
MirCursorConfiguration* conf;
|
|
|
|
MirBufferStream* custom_cursor;
|
2014-11-06 03:21:12 -05:00
|
|
|
} _GLFWcursorMir;
|
|
|
|
|
2014-11-10 12:42:41 -05:00
|
|
|
|
2015-12-03 12:16:46 -05:00
|
|
|
extern void _glfwInitEventQueueMir(EventQueue* queue);
|
|
|
|
extern void _glfwDeleteEventQueueMir(EventQueue* queue);
|
2014-11-10 12:42:41 -05:00
|
|
|
|
2015-06-07 13:32:24 -04:00
|
|
|
#endif // _glfw3_mir_platform_h_
|