2014-11-06 08:26:16 +00:00
|
|
|
//========================================================================
|
2016-08-18 21:42:15 +00:00
|
|
|
// GLFW 3.3 Mir - www.glfw.org
|
2014-11-06 08:26:16 +00:00
|
|
|
//------------------------------------------------------------------------
|
2017-03-29 02:03:29 +00:00
|
|
|
// Copyright (c) 2014-2017 Brandon Schaefer <brandon.schaefer@canonical.com>
|
2014-11-06 08:26:16 +00: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-05-27 13:06:52 +00:00
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <pthread.h>
|
2015-08-10 18:19:04 +00:00
|
|
|
#include <dlfcn.h>
|
2015-05-27 13:06:52 +00:00
|
|
|
|
2014-11-06 08:21:12 +00:00
|
|
|
#include <mir_toolkit/mir_client_library.h>
|
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
typedef VkFlags VkMirWindowCreateFlagsKHR;
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
typedef struct VkMirWindowCreateInfoKHR
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
VkStructureType sType;
|
|
|
|
const void* pNext;
|
2017-03-29 02:03:29 +00:00
|
|
|
VkMirWindowCreateFlagsKHR flags;
|
2015-08-10 18:19:04 +00:00
|
|
|
MirConnection* connection;
|
2017-03-29 02:03:29 +00:00
|
|
|
MirWindow* mirWindow;
|
|
|
|
} VkMirWindowCreateInfoKHR;
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
typedef VkResult (APIENTRY *PFN_vkCreateMirWindowKHR)(VkInstance,const VkMirWindowCreateInfoKHR*,const VkAllocationCallbacks*,VkSurfaceKHR*);
|
2015-08-10 18:19:04 +00:00
|
|
|
typedef VkBool32 (APIENTRY *PFN_vkGetPhysicalDeviceMirPresentationSupportKHR)(VkPhysicalDevice,uint32_t,MirConnection*);
|
|
|
|
|
2017-05-25 17:25:47 +00:00
|
|
|
#include "posix_thread.h"
|
2014-11-06 08:21:12 +00:00
|
|
|
#include "posix_time.h"
|
|
|
|
#include "linux_joystick.h"
|
2015-05-27 13:06:52 +00:00
|
|
|
#include "xkb_unicode.h"
|
2016-03-28 11:19:31 +00:00
|
|
|
#include "egl_context.h"
|
2017-03-02 16:52:32 +00:00
|
|
|
#include "osmesa_context.h"
|
2014-11-06 08:21:12 +00:00
|
|
|
|
2015-08-10 18:19:04 +00: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)
|
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
#define _GLFW_EGL_NATIVE_WINDOW ((EGLNativeWindowType) window->mir.nativeWindow)
|
2015-12-02 22:53:50 +00:00
|
|
|
#define _GLFW_EGL_NATIVE_DISPLAY ((EGLNativeDisplayType) _glfw.mir.display)
|
2014-11-06 08:21:12 +00:00
|
|
|
|
2014-11-06 22:52:38 +00: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 08:21:12 +00:00
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
#define _GLFW_PLATFORM_CONTEXT_STATE
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE
|
|
|
|
|
2015-05-27 13:06:52 +00:00
|
|
|
|
2014-11-10 17:42:41 +00:00
|
|
|
// Mir-specific Event Queue
|
|
|
|
//
|
|
|
|
typedef struct EventQueue
|
|
|
|
{
|
|
|
|
TAILQ_HEAD(, EventNode) head;
|
|
|
|
} EventQueue;
|
2014-11-06 22:52:38 +00:00
|
|
|
|
|
|
|
// Mir-specific per-window data
|
|
|
|
//
|
2014-11-06 08:21:12 +00:00
|
|
|
typedef struct _GLFWwindowMir
|
|
|
|
{
|
2017-03-29 02:03:29 +00:00
|
|
|
MirWindow* window;
|
2014-11-06 22:52:38 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2017-03-29 02:03:29 +00:00
|
|
|
MirEGLNativeWindowType nativeWindow;
|
2016-08-16 22:26:07 +00:00
|
|
|
_GLFWcursor* currentCursor;
|
2014-11-06 08:23:02 +00:00
|
|
|
|
2014-11-06 08:21:12 +00:00
|
|
|
} _GLFWwindowMir;
|
|
|
|
|
2014-11-06 22:52:38 +00:00
|
|
|
// Mir-specific per-monitor data
|
|
|
|
//
|
2014-11-06 08:21:12 +00:00
|
|
|
typedef struct _GLFWmonitorMir
|
|
|
|
{
|
2016-08-16 22:26:07 +00:00
|
|
|
int curMode;
|
|
|
|
int outputId;
|
2014-11-06 08:26:39 +00:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
|
2014-11-06 08:21:12 +00:00
|
|
|
} _GLFWmonitorMir;
|
|
|
|
|
2014-11-06 22:52:38 +00:00
|
|
|
// Mir-specific global data
|
|
|
|
//
|
2014-11-06 08:21:12 +00:00
|
|
|
typedef struct _GLFWlibraryMir
|
|
|
|
{
|
2014-11-06 22:52:38 +00:00
|
|
|
MirConnection* connection;
|
|
|
|
MirEGLNativeDisplayType display;
|
2016-08-16 22:26:07 +00:00
|
|
|
EventQueue* eventQueue;
|
2014-11-10 17:42:41 +00:00
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
short int keycodes[256];
|
|
|
|
short int scancodes[GLFW_KEY_LAST + 1];
|
2015-11-12 14:06:46 +00:00
|
|
|
|
2016-08-16 22:26:07 +00:00
|
|
|
pthread_mutex_t eventMutex;
|
|
|
|
pthread_cond_t eventCond;
|
|
|
|
|
|
|
|
// The window whose disabled cursor mode is active
|
2017-03-29 02:03:29 +00:00
|
|
|
_GLFWwindow* disabledCursorWindow;
|
2014-11-06 08:23:02 +00:00
|
|
|
|
2014-11-06 08:21:12 +00:00
|
|
|
} _GLFWlibraryMir;
|
|
|
|
|
2014-11-06 22:52:38 +00:00
|
|
|
// Mir-specific per-cursor data
|
2015-01-05 20:55:15 +00:00
|
|
|
// TODO: Only system cursors are implemented in Mir atm. Need to wait for support.
|
2014-11-06 22:52:38 +00:00
|
|
|
//
|
2014-11-06 08:21:12 +00:00
|
|
|
typedef struct _GLFWcursorMir
|
|
|
|
{
|
2015-07-30 17:59:32 +00:00
|
|
|
MirCursorConfiguration* conf;
|
2016-08-16 22:26:07 +00:00
|
|
|
MirBufferStream* customCursor;
|
2017-03-29 02:03:29 +00:00
|
|
|
char const* cursorName; // only needed for system cursors
|
2014-11-06 08:21:12 +00:00
|
|
|
} _GLFWcursorMir;
|
|
|
|
|
2014-11-10 17:42:41 +00:00
|
|
|
|
2017-03-29 02:03:29 +00:00
|
|
|
extern void _glfwPollMonitorsMir(void);
|
2015-12-03 17:16:46 +00:00
|
|
|
extern void _glfwInitEventQueueMir(EventQueue* queue);
|
|
|
|
extern void _glfwDeleteEventQueueMir(EventQueue* queue);
|
2014-11-10 17:42:41 +00:00
|
|
|
|