2013-03-28 02:18:07 +00:00
|
|
|
// Copyright (C) 2013 Scott Moreau <oreaus@gmail.com>
|
2014-02-10 18:54:46 +00:00
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2013-03-28 02:18:07 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2013-03-28 02:18:07 +00:00
|
|
|
|
|
|
|
#include <wayland-client.h>
|
|
|
|
#include <wayland-egl.h>
|
|
|
|
#include <wayland-cursor.h>
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
|
2014-02-17 04:51:41 +00:00
|
|
|
#define MOD_SHIFT_MASK 0x01
|
|
|
|
#define MOD_ALT_MASK 0x02
|
|
|
|
#define MOD_CONTROL_MASK 0x04
|
2013-03-28 02:18:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class cWaylandInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
bool ServerConnect(void);
|
|
|
|
bool Initialize(void *config);
|
|
|
|
void *EGLGetDisplay(void);
|
|
|
|
void *CreateWindow(void);
|
|
|
|
void DestroyWindow(void);
|
|
|
|
void UpdateFPSDisplay(const char *text);
|
|
|
|
void ToggleFullscreen(bool fullscreen);
|
2014-01-19 16:11:07 +00:00
|
|
|
void SwapBuffers();
|
2013-03-28 02:18:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|