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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
2014-09-28 19:47:18 +00:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-09-09 14:37:55 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/mman.h>
|
2014-03-17 21:53:43 +00:00
|
|
|
#include <poll.h>
|
2014-09-09 14:43:24 +00:00
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
#include <wayland-egl.h>
|
2014-09-09 14:37:55 +00:00
|
|
|
#include <wayland-cursor.h>
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handlePing(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface,
|
|
|
|
uint32_t serial)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
wl_shell_surface_pong(shellSurface, serial);
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handleConfigure(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface,
|
|
|
|
uint32_t edges,
|
|
|
|
int32_t width,
|
|
|
|
int32_t height)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
2014-07-10 21:07:30 +00:00
|
|
|
_GLFWwindow* window = data;
|
|
|
|
_glfwInputFramebufferSize(window, width, height);
|
|
|
|
_glfwInputWindowSize(window, width, height);
|
|
|
|
_glfwPlatformSetWindowSize(window, width, height);
|
|
|
|
_glfwInputWindowDamage(window);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2014-03-19 15:11:19 +00:00
|
|
|
static void handlePopupDone(void* data,
|
|
|
|
struct wl_shell_surface* shellSurface)
|
2014-03-17 21:53:43 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wl_shell_surface_listener shellSurfaceListener = {
|
|
|
|
handlePing,
|
|
|
|
handleConfigure,
|
|
|
|
handlePopupDone
|
|
|
|
};
|
|
|
|
|
|
|
|
static GLboolean createSurface(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
|
|
|
if (!window->wl.surface)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-06-29 10:29:00 +00:00
|
|
|
wl_surface_set_user_data(window->wl.surface, window);
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.native = wl_egl_window_create(window->wl.surface,
|
|
|
|
wndconfig->width,
|
|
|
|
wndconfig->height);
|
|
|
|
if (!window->wl.native)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.shell_surface = wl_shell_get_shell_surface(_glfw.wl.shell,
|
|
|
|
window->wl.surface);
|
|
|
|
if (!window->wl.shell_surface)
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_add_listener(window->wl.shell_surface,
|
2014-03-17 21:53:43 +00:00
|
|
|
&shellSurfaceListener,
|
|
|
|
window);
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
window->wl.width = wndconfig->width;
|
|
|
|
window->wl.height = wndconfig->height;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-09-09 14:37:55 +00:00
|
|
|
static int
|
2014-09-28 19:47:18 +00:00
|
|
|
createTmpfileCloexec(char* tmpname)
|
2014-09-09 14:37:55 +00:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = mkostemp(tmpname, O_CLOEXEC);
|
|
|
|
if (fd >= 0)
|
|
|
|
unlink(tmpname);
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new, unique, anonymous file of the given size, and
|
|
|
|
* return the file descriptor for it. The file descriptor is set
|
|
|
|
* CLOEXEC. The file is immediately suitable for mmap()'ing
|
|
|
|
* the given size at offset zero.
|
|
|
|
*
|
|
|
|
* The file should not have a permanent backing store like a disk,
|
|
|
|
* but may have if XDG_RUNTIME_DIR is not properly implemented in OS.
|
|
|
|
*
|
|
|
|
* The file name is deleted from the file system.
|
|
|
|
*
|
|
|
|
* The file is suitable for buffer sharing between processes by
|
|
|
|
* transmitting the file descriptor over Unix sockets using the
|
|
|
|
* SCM_RIGHTS methods.
|
|
|
|
*
|
2014-09-28 19:47:18 +00:00
|
|
|
* posix_fallocate() is used to guarantee that disk space is available
|
|
|
|
* for the file at the given size. If disk space is insufficent, errno
|
|
|
|
* is set to ENOSPC. If posix_fallocate() is not supported, program may
|
|
|
|
* receive SIGBUS on accessing mmap()'ed file contents instead.
|
2014-09-09 14:37:55 +00:00
|
|
|
*/
|
|
|
|
int
|
2014-09-28 19:47:18 +00:00
|
|
|
createAnonymousFile(off_t size)
|
2014-09-09 14:37:55 +00:00
|
|
|
{
|
|
|
|
static const char template[] = "/glfw-shared-XXXXXX";
|
2014-09-28 19:47:18 +00:00
|
|
|
const char* path;
|
|
|
|
char* name;
|
2014-09-09 14:37:55 +00:00
|
|
|
int fd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
path = getenv("XDG_RUNTIME_DIR");
|
2014-09-28 19:47:18 +00:00
|
|
|
if (!path)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = malloc(strlen(path) + sizeof(template));
|
|
|
|
strcpy(name, path);
|
|
|
|
strcat(name, template);
|
|
|
|
|
2014-09-28 19:47:18 +00:00
|
|
|
fd = createTmpfileCloexec(name);
|
2014-09-09 14:37:55 +00:00
|
|
|
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
ret = posix_fallocate(fd, 0, size);
|
2014-09-28 19:47:18 +00:00
|
|
|
if (ret != 0)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
close(fd);
|
|
|
|
errno = ret;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW platform API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
{
|
|
|
|
if (!_glfwCreateContext(window, ctxconfig, fbconfig))
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
if (!createSurface(window, wndconfig))
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
if (wndconfig->monitor)
|
|
|
|
{
|
2014-03-19 15:45:08 +00:00
|
|
|
wl_shell_surface_set_fullscreen(
|
|
|
|
window->wl.shell_surface,
|
|
|
|
WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
|
|
|
|
0,
|
|
|
|
wndconfig->monitor->wl.output);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_toplevel(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 14:37:55 +00:00
|
|
|
window->wl.currentCursor = NULL;
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-07-26 20:55:43 +00:00
|
|
|
if (window == _glfw.wl.pointerFocus)
|
|
|
|
{
|
|
|
|
_glfw.wl.pointerFocus = NULL;
|
|
|
|
_glfwInputCursorEnter(window, GL_FALSE);
|
|
|
|
}
|
|
|
|
if (window == _glfw.wl.keyboardFocus)
|
|
|
|
{
|
|
|
|
_glfw.wl.keyboardFocus = NULL;
|
|
|
|
_glfwInputWindowFocus(window, GL_FALSE);
|
|
|
|
}
|
|
|
|
|
2014-07-10 21:08:28 +00:00
|
|
|
_glfwDestroyContext(window);
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.native)
|
|
|
|
wl_egl_window_destroy(window->wl.native);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.shell_surface)
|
|
|
|
wl_shell_surface_destroy(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
if (window->wl.surface)
|
|
|
|
wl_surface_destroy(window->wl.surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_title(window->wl.shell_surface, title);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos)
|
|
|
|
{
|
2014-08-26 12:46:02 +00:00
|
|
|
// A Wayland client is not aware of its position, so just warn and leave it
|
|
|
|
// as (0, 0)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2014-03-19 15:32:50 +00:00
|
|
|
"Wayland: Window position retreival not supported");
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos)
|
|
|
|
{
|
2014-03-19 15:11:19 +00:00
|
|
|
// A Wayland client can not set its position, so just warn
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2014-03-19 15:32:50 +00:00
|
|
|
"Wayland: Window position setting not supported");
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
if (width)
|
2014-03-19 15:20:32 +00:00
|
|
|
*width = window->wl.width;
|
2014-03-17 21:53:43 +00:00
|
|
|
if (height)
|
2014-03-19 15:20:32 +00:00
|
|
|
*height = window->wl.height;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_egl_window_resize(window->wl.native, width, height, 0, 0);
|
|
|
|
window->wl.width = width;
|
|
|
|
window->wl.height = height;
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
{
|
|
|
|
_glfwPlatformGetWindowSize(window, width, height);
|
|
|
|
}
|
|
|
|
|
2014-05-04 09:51:40 +00:00
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
|
|
|
|
int* left, int* top,
|
|
|
|
int* right, int* bottom)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformGetWindowFrameSize not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformIconifyWindow not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformRestoreWindow not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_shell_surface_set_toplevel(window->wl.shell_surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 11:39:06 +00:00
|
|
|
void _glfwPlatformUnhideWindow(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformUnhideWindow not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_surface_attach(window->wl.surface, NULL, 0, 0);
|
|
|
|
wl_surface_commit(window->wl.surface);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformPollEvents(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
struct wl_display* display = _glfw.wl.display;
|
2014-03-17 21:53:43 +00:00
|
|
|
struct pollfd fds[] = {
|
|
|
|
{ wl_display_get_fd(display), POLLIN },
|
|
|
|
};
|
|
|
|
|
|
|
|
while (wl_display_prepare_read(display) != 0)
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
wl_display_flush(display);
|
|
|
|
if (poll(fds, 1, 0) > 0)
|
|
|
|
{
|
|
|
|
wl_display_read_events(display);
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformWaitEvents(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
struct wl_display* display = _glfw.wl.display;
|
2014-03-17 21:53:43 +00:00
|
|
|
struct pollfd fds[] = {
|
|
|
|
{ wl_display_get_fd(display), POLLIN },
|
|
|
|
};
|
|
|
|
|
|
|
|
while (wl_display_prepare_read(display) != 0)
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
wl_display_flush(display);
|
|
|
|
if (poll(fds, 1, -1) > 0)
|
|
|
|
{
|
|
|
|
wl_display_read_events(display);
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
wl_display_sync(_glfw.wl.display);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double x, double y)
|
|
|
|
{
|
2014-03-19 15:11:19 +00:00
|
|
|
// A Wayland client can not set the cursor position
|
2014-03-17 21:53:43 +00:00
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2014-03-19 15:32:50 +00:00
|
|
|
"Wayland: Cursor position setting not supported");
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformApplyCursorMode(_GLFWwindow* window)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
_glfwPlatformSetCursor(window, window->wl.currentCursor);
|
2014-03-17 21:53:43 +00:00
|
|
|
}
|
2014-03-19 15:11:19 +00:00
|
|
|
|
2014-03-27 16:29:22 +00:00
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
|
|
|
|
const GLFWimage* image,
|
|
|
|
int xhot, int yhot)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
struct wl_shm_pool *pool;
|
|
|
|
int stride = image->width * 4;
|
|
|
|
int length = image->width * image->height * 4;
|
|
|
|
void *data;
|
|
|
|
int fd, i;
|
|
|
|
|
2014-09-28 19:47:18 +00:00
|
|
|
fd = createAnonymousFile(length);
|
2014-09-09 14:37:55 +00:00
|
|
|
if (fd < 0) {
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland: Creating a buffer file for %d B failed: %m\n",
|
|
|
|
length);
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
data = mmap(NULL, length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
if (data == MAP_FAILED) {
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
"Wayland: Cursor mmap failed: %m\n");
|
|
|
|
close(fd);
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
pool = wl_shm_create_pool(_glfw.wl.shm, fd, length);
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
unsigned char* source = (unsigned char*) image->pixels;
|
|
|
|
unsigned char* target = data;
|
|
|
|
for (i = 0; i < image->width * image->height; i++, source += 4)
|
|
|
|
{
|
|
|
|
*target++ = source[2];
|
|
|
|
*target++ = source[1];
|
|
|
|
*target++ = source[0];
|
|
|
|
*target++ = source[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
cursor->wl.buffer = wl_shm_pool_create_buffer(pool, 0,
|
|
|
|
image->width,
|
|
|
|
image->height,
|
|
|
|
stride, WL_SHM_FORMAT_ARGB8888);
|
|
|
|
munmap(data, length);
|
|
|
|
wl_shm_pool_destroy(pool);
|
|
|
|
|
|
|
|
cursor->wl.width = image->width;
|
|
|
|
cursor->wl.height = image->height;
|
|
|
|
cursor->wl.xhot = xhot;
|
|
|
|
cursor->wl.yhot = yhot;
|
|
|
|
return GL_TRUE;
|
2014-03-27 16:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
wl_buffer_destroy(cursor->wl.buffer);
|
2014-03-27 16:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
|
|
|
|
{
|
2014-09-09 14:37:55 +00:00
|
|
|
struct wl_buffer *buffer;
|
|
|
|
struct wl_cursor_image *image;
|
|
|
|
struct wl_surface *surface = _glfw.wl.cursorSurface;
|
|
|
|
|
|
|
|
if (!_glfw.wl.pointer)
|
|
|
|
return;
|
|
|
|
|
|
|
|
window->wl.currentCursor = cursor;
|
|
|
|
|
|
|
|
// If we're not in the correct window just save the cursor
|
|
|
|
// the next time the pointer enters the window the cursor will change
|
|
|
|
if (window != _glfw.wl.pointerFocus)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_NORMAL)
|
|
|
|
{
|
|
|
|
if (cursor == NULL)
|
|
|
|
{
|
|
|
|
image = _glfw.wl.defaultCursor->images[0];
|
|
|
|
buffer = wl_cursor_image_get_buffer(image);
|
|
|
|
if (!buffer)
|
|
|
|
return;
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial,
|
|
|
|
surface,
|
|
|
|
image->hotspot_x,
|
|
|
|
image->hotspot_y);
|
|
|
|
wl_surface_attach(surface, buffer, 0, 0);
|
|
|
|
wl_surface_damage(surface, 0, 0,
|
|
|
|
image->width, image->height);
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial,
|
|
|
|
surface,
|
|
|
|
cursor->wl.xhot,
|
|
|
|
cursor->wl.yhot);
|
|
|
|
wl_surface_attach(surface, cursor->wl.buffer, 0, 0);
|
|
|
|
wl_surface_damage(surface, 0, 0,
|
|
|
|
cursor->wl.width, cursor->wl.height);
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Cursor is hidden set cursor surface to NULL */
|
|
|
|
{
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial, NULL, 0, 0);
|
|
|
|
}
|
2014-03-27 16:29:22 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 14:26:57 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformSetClipboardString not implemented yet\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
|
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
fprintf(stderr, "_glfwPlatformGetClipboardString not implemented yet\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|