glfw/src/x11/platform.h

240 lines
7.4 KiB
C
Raw Normal View History

2010-09-07 15:34:51 +00:00
//========================================================================
// GLFW - An OpenGL framework
// 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_
// This is the X11 version of GLFW
#define _GLFW_X11
#include <sys/time.h>
#include <unistd.h>
#include <signal.h>
#include <X11/Xlib.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
2010-10-03 17:50:19 +00:00
2010-09-07 15:34:51 +00:00
#include <GL/glx.h>
2010-10-03 17:50:19 +00:00
#include "../../include/GL/glfw3.h"
2010-09-07 15:34:51 +00:00
// We need declarations for GLX version 1.3 or above even if the server doesn't
// support version 1.3
#ifndef GLX_VERSION_1_3
#error "GLX header version 1.3 or above is required"
#endif
2010-09-08 21:46:12 +00:00
#if defined(_GLFW_HAS_XF86VIDMODE) && defined(_GLFW_HAS_XRANDR)
2010-09-07 15:34:51 +00:00
#error "Xf86VidMode and RandR extensions cannot both be enabled"
#endif
// 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
// Pointer length integer
// One day, this will most likely move into glfw.h
typedef intptr_t GLFWintptr;
#ifndef GL_VERSION_3_0
2010-09-08 21:46:12 +00:00
typedef const GLubyte* (APIENTRY *PFNGLGETSTRINGIPROC)(GLenum, GLuint);
2010-09-07 15:34:51 +00:00
#endif /*GL_VERSION_3_0*/
2010-09-09 16:15:32 +00:00
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 X11
#define _GLFW_PLATFORM_LIBRARY_STATE _GLFWlibraryX11 X11
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextGLX GLX
2010-09-09 16:15:32 +00:00
2010-09-07 15:34:51 +00:00
//========================================================================
// Global variables (GLFW internals)
//========================================================================
//------------------------------------------------------------------------
2010-09-10 20:10:19 +00:00
// Platform-specific OpenGL context structure
2010-09-07 15:34:51 +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
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;
PFNGLXGETFBCONFIGATTRIBSGIXPROC GetFBConfigAttribSGIX;
PFNGLXCHOOSEFBCONFIGSGIXPROC ChooseFBConfigSGIX;
PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC CreateContextWithConfigSGIX;
PFNGLXGETVISUALFROMFBCONFIGSGIXPROC GetVisualFromFBConfigSGIX;
PFNGLXCREATECONTEXTATTRIBSARBPROC CreateContextAttribsARB;
GLboolean has_GLX_SGIX_fbconfig;
GLboolean has_GLX_SGI_swap_control;
GLboolean has_GLX_ARB_multisample;
GLboolean has_GLX_ARB_create_context;
GLboolean has_GLX_ARB_create_context_profile;
} _GLFWcontextGLX;
//------------------------------------------------------------------------
2010-09-10 20:10:19 +00:00
// Platform-specific window structure
//------------------------------------------------------------------------
typedef struct _GLFWwindowX11
{
// Platform specific window resources
Colormap colormap; // Window colormap
Window handle; // Window handle
Atom wmDeleteWindow; // WM_DELETE_WINDOW 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
2010-09-07 15:34:51 +00:00
// Various platform specific internal variables
GLboolean hasEWMH; // True if window manager supports EWMH
GLboolean overrideRedirect; // True if window is OverrideRedirect
GLboolean keyboardGrabbed; // True if keyboard is currently grabbed
GLboolean pointerGrabbed; // True if pointer is currently grabbed
GLboolean pointerHidden; // True if pointer is currently hidden
GLboolean mouseMoved;
int cursorPosX, cursorPosY;
2010-09-07 15:34:51 +00:00
2010-09-09 16:15:32 +00:00
} _GLFWwindowX11;
//------------------------------------------------------------------------
2010-09-10 20:10:19 +00:00
// Platform-specific library global data
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;
int screen;
Window root;
Cursor cursor; // Invisible cursor for hidden cursor
2010-09-09 16:15:32 +00:00
// Server-side GLX version
int glxMajor, glxMinor;
struct {
int available;
int eventBase;
int errorBase;
} XF86VidMode;
struct {
int available;
int eventBase;
int errorBase;
} XRandR;
2010-09-07 15:34:51 +00:00
// Screensaver data
struct {
int 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 {
int modeChanged;
2010-09-08 21:46:12 +00:00
#if defined(_GLFW_HAS_XF86VIDMODE)
2010-09-07 15:34:51 +00:00
XF86VidModeModeInfo oldMode;
#endif
2010-09-08 21:46:12 +00:00
#if defined(_GLFW_HAS_XRANDR)
2010-09-07 15:34:51 +00:00
SizeID oldSizeID;
int oldWidth;
int oldHeight;
Rotation oldRotation;
#endif
} FS;
// Timer data
struct {
double resolution;
long long t0;
2010-09-09 18:25:33 +00:00
} timer;
2010-09-07 15:34:51 +00:00
#if defined(_GLFW_DLOPEN_LIBGL)
2010-09-09 18:25:33 +00:00
void* libGL; // dlopen handle for libGL.so
2010-09-07 15:34:51 +00:00
#endif
2010-09-09 16:15:32 +00:00
} _GLFWlibraryX11;
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
2010-09-08 21:46:12 +00:00
int _glfwGetClosestVideoMode(int screen, int* width, int* height, int* rate);
void _glfwSetVideoModeMODE(int screen, int mode, int rate);
void _glfwSetVideoMode(int screen, int* width, int* height, int* rate);
2010-09-09 16:15:32 +00:00
void _glfwRestoreVideoMode(int screen);
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
#endif // _platform_h_