1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 15:17:25 -04:00
glfw/src/mir_platform.h

132 lines
3.9 KiB
C
Raw Normal View History

2014-11-06 03:26:16 -05:00
//========================================================================
2016-08-18 17:42:15 -04:00
// GLFW 3.3 Mir - www.glfw.org
2014-11-06 03:26:16 -05: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_
2015-05-27 09:06:52 -04:00
#include <sys/queue.h>
#include <pthread.h>
#include <dlfcn.h>
2015-05-27 09:06:52 -04:00
#include <mir_toolkit/mir_client_library.h>
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*);
#include "posix_tls.h"
#include "posix_time.h"
#include "linux_joystick.h"
2015-05-27 09:06:52 -04:00
#include "xkb_unicode.h"
#include "egl_context.h"
#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 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
#define _GLFW_PLATFORM_CONTEXT_STATE
#define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE
2015-05-27 09:06:52 -04: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
//
typedef struct _GLFWwindowMir
{
2014-11-06 17:52:38 -05:00
MirSurface* surface;
int width;
int height;
MirEGLNativeWindowType window;
} _GLFWwindowMir;
2014-11-06 17:52:38 -05:00
// Mir-specific per-monitor data
//
typedef struct _GLFWmonitorMir
{
2014-11-06 03:28:17 -05:00
int cur_mode;
int output_id;
int x;
int y;
} _GLFWmonitorMir;
2014-11-06 17:52:38 -05:00
// Mir-specific global data
//
typedef struct _GLFWlibraryMir
{
2014-11-06 17:52:38 -05:00
MirConnection* connection;
MirEGLNativeDisplayType display;
MirCursorConfiguration* default_conf;
EventQueue* event_queue;
short int publicKeys[256];
short int nativeKeys[GLFW_KEY_LAST + 1];
pthread_mutex_t event_mutex;
pthread_cond_t event_cond;
} _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
//
typedef struct _GLFWcursorMir
{
MirCursorConfiguration* conf;
MirBufferStream* custom_cursor;
} _GLFWcursorMir;
extern void _glfwInitEventQueueMir(EventQueue* queue);
extern void _glfwDeleteEventQueueMir(EventQueue* queue);
2015-06-07 13:32:24 -04:00
#endif // _glfw3_mir_platform_h_