2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2011-03-06 00:46:39 +00:00
|
|
|
// GLFW - An OpenGL library
|
2010-09-07 15:34:51 +00:00
|
|
|
// Platform: X11/GLX
|
2010-09-07 15:41:26 +00:00
|
|
|
// API version: 3.0
|
2010-09-07 15:34:51 +00:00
|
|
|
// WWW: http://www.glfw.org/
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
|
|
|
// Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#ifndef _platform_h_
|
|
|
|
#define _platform_h_
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
2011-09-19 22:55:20 +00:00
|
|
|
#include <stdint.h>
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xatom.h>
|
2010-10-03 17:50:19 +00:00
|
|
|
|
2011-01-02 19:20:55 +00:00
|
|
|
#define GLX_GLXEXT_LEGACY
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <GL/glx.h>
|
2010-10-03 17:50:19 +00:00
|
|
|
|
2011-09-22 12:15:07 +00:00
|
|
|
// This path may need to be changed if you build GLFW using your own setup
|
|
|
|
// We ship and use our own copy of glxext.h since GLFW uses fairly new
|
|
|
|
// extensions and not all operating systems come with an up-to-date version
|
2011-09-06 15:32:41 +00:00
|
|
|
#include "../support/GL/glxext.h"
|
2010-11-17 20:18:05 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// With XFree86, we can use the XF86VidMode extension
|
2010-09-08 21:46:12 +00:00
|
|
|
#if defined(_GLFW_HAS_XF86VIDMODE)
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <X11/extensions/xf86vmode.h>
|
|
|
|
#endif
|
|
|
|
|
2010-09-08 21:46:12 +00:00
|
|
|
#if defined(_GLFW_HAS_XRANDR)
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <X11/extensions/Xrandr.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Do we have support for dlopen/dlsym?
|
2010-09-08 21:46:12 +00:00
|
|
|
#if defined(_GLFW_HAS_DLOPEN)
|
2010-09-07 15:34:51 +00:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
2011-01-02 10:18:14 +00:00
|
|
|
// The Xkb extension provides improved keyboard support
|
2011-01-03 20:44:05 +00:00
|
|
|
#if defined(_GLFW_HAS_XKB)
|
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
#endif
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-07 12:37:09 +00:00
|
|
|
// We support four different ways for getting addresses for GL/GLX
|
|
|
|
// extension functions: glXGetProcAddress, glXGetProcAddressARB,
|
|
|
|
// glXGetProcAddressEXT, and dlsym
|
|
|
|
#if defined(_GLFW_HAS_GLXGETPROCADDRESSARB)
|
|
|
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddressARB(x)
|
|
|
|
#elif defined(_GLFW_HAS_GLXGETPROCADDRESS)
|
|
|
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddress(x)
|
|
|
|
#elif defined(_GLFW_HAS_GLXGETPROCADDRESSEXT)
|
|
|
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddressEXT(x)
|
|
|
|
#elif defined(_GLFW_HAS_DLOPEN)
|
2012-04-22 13:53:02 +00:00
|
|
|
#define _glfw_glXGetProcAddress(x) dlsym(_glfwLibrary.GLX.libGL, x)
|
2011-09-07 12:37:09 +00:00
|
|
|
#define _GLFW_DLOPEN_LIBGL
|
|
|
|
#else
|
|
|
|
#error "No OpenGL entry point retrieval mechanism was enabled"
|
|
|
|
#endif
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 X11
|
2010-09-09 18:36:23 +00:00
|
|
|
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextGLX GLX
|
2012-04-22 13:53:02 +00:00
|
|
|
#define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE _GLFWlibraryX11 X11
|
|
|
|
#define _GLFW_PLATFORM_LIBRARY_OPENGL_STATE _GLFWlibraryGLX GLX
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2012-04-09 13:21:54 +00:00
|
|
|
// Clipboard format atom indices
|
|
|
|
#define _GLFW_CLIPBOARD_FORMAT_UTF8 0
|
|
|
|
#define _GLFW_CLIPBOARD_FORMAT_COMPOUND 1
|
|
|
|
#define _GLFW_CLIPBOARD_FORMAT_STRING 2
|
|
|
|
#define _GLFW_CLIPBOARD_FORMAT_COUNT 3
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2012-04-11 21:32:50 +00:00
|
|
|
// Clipboard conversion status tokens
|
|
|
|
#define _GLFW_CONVERSION_INACTIVE 0
|
|
|
|
#define _GLFW_CONVERSION_SUCCEEDED 1
|
|
|
|
#define _GLFW_CONVERSION_FAILED 2
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2010-10-14 15:55:45 +00:00
|
|
|
// GLFW platform specific types
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2010-10-14 15:55:45 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Pointer length integer
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef intptr_t GLFWintptr;
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-10 20:10:19 +00:00
|
|
|
// Platform-specific OpenGL context structure
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-09 18:36:23 +00:00
|
|
|
typedef struct _GLFWcontextGLX
|
2010-09-09 18:21:15 +00:00
|
|
|
{
|
2010-09-07 15:34:51 +00:00
|
|
|
GLXFBConfigID fbconfigID; // ID of selected GLXFBConfig
|
|
|
|
GLXContext context; // OpenGL rendering context
|
2010-09-09 18:36:23 +00:00
|
|
|
XVisualInfo* visual; // Visual for selected GLXFBConfig
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// GLX extensions
|
|
|
|
PFNGLXSWAPINTERVALSGIPROC SwapIntervalSGI;
|
2010-11-15 20:17:42 +00:00
|
|
|
PFNGLXSWAPINTERVALEXTPROC SwapIntervalEXT;
|
2010-09-07 15:34:51 +00:00
|
|
|
PFNGLXGETFBCONFIGATTRIBSGIXPROC GetFBConfigAttribSGIX;
|
|
|
|
PFNGLXCHOOSEFBCONFIGSGIXPROC ChooseFBConfigSGIX;
|
|
|
|
PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC CreateContextWithConfigSGIX;
|
|
|
|
PFNGLXGETVISUALFROMFBCONFIGSGIXPROC GetVisualFromFBConfigSGIX;
|
|
|
|
PFNGLXCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB;
|
2011-09-06 12:51:03 +00:00
|
|
|
GLboolean SGIX_fbconfig;
|
|
|
|
GLboolean SGI_swap_control;
|
|
|
|
GLboolean EXT_swap_control;
|
|
|
|
GLboolean ARB_multisample;
|
|
|
|
GLboolean ARB_create_context;
|
|
|
|
GLboolean ARB_create_context_profile;
|
|
|
|
GLboolean ARB_create_context_robustness;
|
|
|
|
GLboolean EXT_create_context_es2_profile;
|
2011-02-27 20:43:46 +00:00
|
|
|
|
2010-09-09 18:36:23 +00:00
|
|
|
} _GLFWcontextGLX;
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2010-09-10 20:10:19 +00:00
|
|
|
// Platform-specific window structure
|
2010-09-09 18:36:23 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct _GLFWwindowX11
|
|
|
|
{
|
|
|
|
// Platform specific window resources
|
|
|
|
Colormap colormap; // Window colormap
|
2010-09-11 13:34:03 +00:00
|
|
|
Window handle; // Window handle
|
2010-09-09 18:36:23 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Various platform specific internal variables
|
2010-09-11 13:34:03 +00:00
|
|
|
GLboolean overrideRedirect; // True if window is OverrideRedirect
|
|
|
|
GLboolean keyboardGrabbed; // True if keyboard is currently grabbed
|
2011-09-06 11:55:29 +00:00
|
|
|
GLboolean cursorGrabbed; // True if cursor is currently grabbed
|
|
|
|
GLboolean cursorHidden; // True if cursor is currently hidden
|
|
|
|
GLboolean cursorCentered; // True if cursor was moved since last poll
|
2010-09-11 13:34:03 +00:00
|
|
|
int cursorPosX, cursorPosY;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
} _GLFWwindowX11;
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
2012-04-22 13:53:02 +00:00
|
|
|
// Platform-specific library global data for X11
|
2010-09-09 16:15:32 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-09 18:21:15 +00:00
|
|
|
typedef struct _GLFWlibraryX11
|
|
|
|
{
|
2010-09-09 16:15:32 +00:00
|
|
|
Display* display;
|
2010-09-09 21:37:50 +00:00
|
|
|
int screen;
|
|
|
|
Window root;
|
2010-09-11 13:39:21 +00:00
|
|
|
Cursor cursor; // Invisible cursor for hidden cursor
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2012-04-05 15:29:08 +00:00
|
|
|
Atom wmDeleteWindow; // WM_DELETE_WINDOW atom
|
|
|
|
Atom wmName; // _NET_WM_NAME atom
|
|
|
|
Atom wmIconName; // _NET_WM_ICON_NAME atom
|
|
|
|
Atom wmPing; // _NET_WM_PING atom
|
|
|
|
Atom wmState; // _NET_WM_STATE atom
|
|
|
|
Atom wmStateFullscreen; // _NET_WM_STATE_FULLSCREEN atom
|
|
|
|
Atom wmActiveWindow; // _NET_ACTIVE_WINDOW atom
|
|
|
|
|
|
|
|
// True if window manager supports EWMH
|
|
|
|
GLboolean hasEWMH;
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
struct {
|
2010-10-13 02:04:43 +00:00
|
|
|
GLboolean available;
|
2010-09-09 16:15:32 +00:00
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
2010-10-13 21:05:17 +00:00
|
|
|
} VidMode;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
struct {
|
2010-10-13 02:04:43 +00:00
|
|
|
GLboolean available;
|
2010-09-09 16:15:32 +00:00
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
2010-10-13 02:04:43 +00:00
|
|
|
int majorVersion;
|
|
|
|
int minorVersion;
|
|
|
|
GLboolean gammaBroken;
|
2010-10-13 21:05:17 +00:00
|
|
|
} RandR;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2011-01-02 10:18:14 +00:00
|
|
|
struct {
|
|
|
|
GLboolean available;
|
|
|
|
int majorOpcode;
|
|
|
|
int eventBase;
|
|
|
|
int errorBase;
|
|
|
|
int majorVersion;
|
|
|
|
int minorVersion;
|
|
|
|
} Xkb;
|
|
|
|
|
2011-01-03 20:44:05 +00:00
|
|
|
// Key code LUT (mapping X11 key codes to GLFW key codes)
|
2011-09-20 16:52:00 +00:00
|
|
|
int keyCodeLUT[256];
|
2011-01-03 20:44:05 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Screensaver data
|
|
|
|
struct {
|
2010-10-14 15:37:56 +00:00
|
|
|
GLboolean changed;
|
|
|
|
int timeout;
|
|
|
|
int interval;
|
|
|
|
int blanking;
|
|
|
|
int exposure;
|
2010-09-09 18:22:23 +00:00
|
|
|
} saver;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Fullscreen data
|
|
|
|
struct {
|
2010-10-14 15:37:56 +00:00
|
|
|
GLboolean modeChanged;
|
2010-09-08 21:46:12 +00:00
|
|
|
#if defined(_GLFW_HAS_XRANDR)
|
2010-10-14 15:37:56 +00:00
|
|
|
SizeID oldSizeID;
|
|
|
|
int oldWidth;
|
|
|
|
int oldHeight;
|
|
|
|
Rotation oldRotation;
|
|
|
|
#endif /*_GLFW_HAS_XRANDR*/
|
2010-10-13 21:01:17 +00:00
|
|
|
#if defined(_GLFW_HAS_XF86VIDMODE)
|
2010-10-13 02:04:43 +00:00
|
|
|
XF86VidModeModeInfo oldMode;
|
2010-10-14 15:37:56 +00:00
|
|
|
#endif /*_GLFW_HAS_XF86VIDMODE*/
|
2010-09-07 15:34:51 +00:00
|
|
|
} FS;
|
|
|
|
|
|
|
|
// Timer data
|
|
|
|
struct {
|
2011-09-19 22:55:20 +00:00
|
|
|
GLboolean monotonic;
|
2010-09-07 15:34:51 +00:00
|
|
|
double resolution;
|
2011-09-20 16:52:00 +00:00
|
|
|
uint64_t base;
|
2010-09-09 18:25:33 +00:00
|
|
|
} timer;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-21 14:43:28 +00:00
|
|
|
// Selection data
|
|
|
|
struct {
|
2012-04-09 13:00:52 +00:00
|
|
|
Atom atom;
|
2012-04-09 13:21:54 +00:00
|
|
|
Atom formats[_GLFW_CLIPBOARD_FORMAT_COUNT];
|
2012-04-09 13:27:32 +00:00
|
|
|
char* string;
|
2012-04-11 21:32:50 +00:00
|
|
|
Atom target;
|
|
|
|
Atom targets;
|
|
|
|
Atom property;
|
|
|
|
int status;
|
2011-09-21 14:43:28 +00:00
|
|
|
} selection;
|
|
|
|
|
2012-04-22 13:53:02 +00:00
|
|
|
} _GLFWlibraryX11;
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Platform-specific library global data for GLX
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
typedef struct _GLFWlibraryGLX
|
|
|
|
{
|
|
|
|
// Server-side GLX version
|
|
|
|
int majorVersion, minorVersion;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#if defined(_GLFW_DLOPEN_LIBGL)
|
2010-10-14 15:37:56 +00:00
|
|
|
void* libGL; // dlopen handle for libGL.so
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
2012-04-22 13:53:02 +00:00
|
|
|
} _GLFWlibraryGLX;
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Joystick information & state
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
GLFWGLOBAL struct {
|
|
|
|
int Present;
|
|
|
|
int fd;
|
|
|
|
int NumAxes;
|
|
|
|
int NumButtons;
|
2010-09-08 21:46:12 +00:00
|
|
|
float* Axis;
|
|
|
|
unsigned char* Button;
|
|
|
|
} _glfwJoy[GLFW_JOYSTICK_LAST + 1];
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform specific internal functions
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
// Time
|
2010-09-08 21:46:12 +00:00
|
|
|
void _glfwInitTimer(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Fullscreen support
|
2012-04-05 14:14:01 +00:00
|
|
|
int _glfwGetClosestVideoMode(int* width, int* height, int* rate);
|
|
|
|
void _glfwSetVideoModeMODE(int mode, int rate);
|
|
|
|
void _glfwSetVideoMode(int* width, int* height, int* rate);
|
|
|
|
void _glfwRestoreVideoMode(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Joystick input
|
2010-09-08 21:46:12 +00:00
|
|
|
void _glfwInitJoysticks(void);
|
|
|
|
void _glfwTerminateJoysticks(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Unicode support
|
2010-09-08 21:46:12 +00:00
|
|
|
long _glfwKeySym2Unicode(KeySym keysym);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-09-22 11:03:45 +00:00
|
|
|
// Clipboard handling
|
2012-04-11 21:32:50 +00:00
|
|
|
GLboolean _glfwReadSelection(XSelectionEvent* request);
|
|
|
|
Atom _glfwWriteSelection(XSelectionRequestEvent* request);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-09 23:15:50 +00:00
|
|
|
// Event processing
|
|
|
|
void _glfwProcessPendingEvents(void);
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif // _platform_h_
|