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: Any
|
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 _internal_h_
|
|
|
|
#define _internal_h_
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// GLFWGLOBAL is a macro that places all global variables in the init.c
|
|
|
|
// module (all other modules reference global variables as 'extern')
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-08 15:30:21 +00:00
|
|
|
#if defined(_init_c_)
|
2012-02-05 15:56:26 +00:00
|
|
|
#define GLFWGLOBAL
|
2010-09-07 15:34:51 +00:00
|
|
|
#else
|
2012-02-05 15:56:26 +00:00
|
|
|
#define GLFWGLOBAL extern
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Input handling definitions
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
// Internal key and button state/action definitions
|
|
|
|
#define GLFW_STICK 2
|
|
|
|
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Platform specific definitions goes in platform.h (which also includes
|
|
|
|
// glfw.h)
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2010-09-16 22:54:11 +00:00
|
|
|
#include "config.h"
|
2010-11-17 13:52:47 +00:00
|
|
|
|
2011-07-26 13:16:34 +00:00
|
|
|
#include "../include/GL/glfw3.h"
|
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 glext.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/glext.h"
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2011-07-26 13:16:34 +00:00
|
|
|
#if defined(_GLFW_COCOA_NSGL)
|
2012-02-05 15:56:26 +00:00
|
|
|
#include "cocoa_platform.h"
|
2011-07-26 13:16:34 +00:00
|
|
|
#elif defined(_GLFW_WIN32_WGL)
|
2012-02-05 15:56:26 +00:00
|
|
|
#include "win32_platform.h"
|
2011-07-26 13:16:34 +00:00
|
|
|
#elif defined(_GLFW_X11_GLX)
|
2012-02-05 15:56:26 +00:00
|
|
|
#include "x11_platform.h"
|
2011-07-26 13:16:34 +00:00
|
|
|
#else
|
2012-02-05 15:56:26 +00:00
|
|
|
#error "No supported platform selected"
|
2011-07-26 13:16:34 +00:00
|
|
|
#endif
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-10-04 16:17:53 +00:00
|
|
|
typedef struct _GLFWhints _GLFWhints;
|
|
|
|
typedef struct _GLFWwndconfig _GLFWwndconfig;
|
|
|
|
typedef struct _GLFWfbconfig _GLFWfbconfig;
|
|
|
|
typedef struct _GLFWwindow _GLFWwindow;
|
|
|
|
typedef struct _GLFWlibrary _GLFWlibrary;
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
2010-09-09 18:18:10 +00:00
|
|
|
// Window hints, set by glfwOpenWindowHint and consumed by glfwOpenWindow
|
|
|
|
// A bucket of semi-random stuff lumped together for historical reasons
|
2010-09-07 15:34:51 +00:00
|
|
|
// This is used only by the platform independent code and only to store
|
|
|
|
// parameters passed to us by glfwOpenWindowHint
|
|
|
|
//------------------------------------------------------------------------
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWhints
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2010-09-09 17:58:51 +00:00
|
|
|
int redBits;
|
|
|
|
int greenBits;
|
|
|
|
int blueBits;
|
|
|
|
int alphaBits;
|
|
|
|
int depthBits;
|
|
|
|
int stencilBits;
|
2010-09-07 15:34:51 +00:00
|
|
|
int refreshRate;
|
|
|
|
int accumRedBits;
|
|
|
|
int accumGreenBits;
|
|
|
|
int accumBlueBits;
|
|
|
|
int accumAlphaBits;
|
|
|
|
int auxBuffers;
|
2010-10-25 10:36:14 +00:00
|
|
|
GLboolean stereo;
|
2011-11-02 15:56:34 +00:00
|
|
|
GLboolean resizable;
|
2010-09-07 15:34:51 +00:00
|
|
|
int samples;
|
|
|
|
int glMajor;
|
|
|
|
int glMinor;
|
2010-10-25 10:36:14 +00:00
|
|
|
GLboolean glForward;
|
|
|
|
GLboolean glDebug;
|
2010-09-07 15:34:51 +00:00
|
|
|
int glProfile;
|
2011-03-07 19:51:34 +00:00
|
|
|
int glRobustness;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Parameters relating to the creation of the context and window but not
|
|
|
|
// directly related to the properties of the framebuffer
|
|
|
|
// This is used to pass window and context creation parameters from the
|
|
|
|
// platform independent code to the platform specific code
|
|
|
|
//------------------------------------------------------------------------
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWwndconfig
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2010-10-04 16:17:53 +00:00
|
|
|
int mode;
|
|
|
|
const char* title;
|
|
|
|
int refreshRate;
|
2011-11-02 15:56:34 +00:00
|
|
|
GLboolean resizable;
|
2010-10-04 16:17:53 +00:00
|
|
|
int glMajor;
|
|
|
|
int glMinor;
|
2010-10-25 10:36:14 +00:00
|
|
|
GLboolean glForward;
|
|
|
|
GLboolean glDebug;
|
2010-10-04 16:17:53 +00:00
|
|
|
int glProfile;
|
2011-03-07 19:51:34 +00:00
|
|
|
int glRobustness;
|
2010-10-04 16:17:53 +00:00
|
|
|
_GLFWwindow* share;
|
|
|
|
};
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Framebuffer configuration descriptor, i.e. buffers and their sizes
|
|
|
|
// Also a platform specific ID used to map back to the actual backend APIs
|
|
|
|
// This is used to pass framebuffer parameters from the platform independent
|
|
|
|
// code to the platform specific code, and also to enumerate and select
|
|
|
|
// available framebuffer configurations
|
|
|
|
//------------------------------------------------------------------------
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWfbconfig
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2010-09-07 15:34:51 +00:00
|
|
|
int redBits;
|
|
|
|
int greenBits;
|
|
|
|
int blueBits;
|
|
|
|
int alphaBits;
|
|
|
|
int depthBits;
|
|
|
|
int stencilBits;
|
|
|
|
int accumRedBits;
|
|
|
|
int accumGreenBits;
|
|
|
|
int accumBlueBits;
|
|
|
|
int accumAlphaBits;
|
|
|
|
int auxBuffers;
|
2010-10-25 10:36:14 +00:00
|
|
|
GLboolean stereo;
|
2010-09-07 15:34:51 +00:00
|
|
|
int samples;
|
|
|
|
GLFWintptr platformID;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Window structure
|
|
|
|
//------------------------------------------------------------------------
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWwindow
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2010-09-09 22:06:23 +00:00
|
|
|
struct _GLFWwindow* next;
|
|
|
|
|
2010-09-09 18:18:10 +00:00
|
|
|
// Window settings and state
|
|
|
|
GLboolean iconified; // GL_TRUE if this window is iconified
|
2010-09-16 04:02:44 +00:00
|
|
|
GLboolean closeRequested; // GL_TRUE if this window should be closed
|
2010-09-09 18:18:10 +00:00
|
|
|
int width, height;
|
2010-09-14 01:53:22 +00:00
|
|
|
int positionX, positionY;
|
2010-09-09 18:18:10 +00:00
|
|
|
int mode; // GLFW_WINDOW or GLFW_FULLSCREEN
|
2011-11-02 15:56:34 +00:00
|
|
|
GLboolean resizable; // GL_TRUE if user may resize this window
|
2010-09-09 18:18:10 +00:00
|
|
|
int refreshRate; // monitor refresh rate
|
2010-09-09 20:44:38 +00:00
|
|
|
void* userPointer;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-09-09 18:18:10 +00:00
|
|
|
// Window input state
|
2010-09-09 16:15:32 +00:00
|
|
|
GLboolean stickyKeys;
|
|
|
|
GLboolean stickyMouseButtons;
|
|
|
|
GLboolean keyRepeat;
|
2012-02-03 23:51:35 +00:00
|
|
|
GLboolean systemKeys; // system keys enabled flag
|
2011-10-13 13:20:59 +00:00
|
|
|
int cursorPosX, cursorPosY;
|
2011-09-06 11:55:29 +00:00
|
|
|
int cursorMode;
|
2012-03-28 19:54:09 +00:00
|
|
|
double scrollX, scrollY;
|
2010-09-09 16:15:32 +00:00
|
|
|
char mouseButton[GLFW_MOUSE_BUTTON_LAST + 1];
|
|
|
|
char key[GLFW_KEY_LAST + 1];
|
|
|
|
|
|
|
|
// Framebuffer attributes
|
|
|
|
int redBits;
|
|
|
|
int greenBits;
|
|
|
|
int blueBits;
|
|
|
|
int alphaBits;
|
|
|
|
int depthBits;
|
|
|
|
int stencilBits;
|
|
|
|
int accumRedBits;
|
|
|
|
int accumGreenBits;
|
|
|
|
int accumBlueBits;
|
|
|
|
int accumAlphaBits;
|
|
|
|
int auxBuffers;
|
|
|
|
GLboolean stereo;
|
|
|
|
int samples;
|
|
|
|
|
|
|
|
// OpenGL extensions and context attributes
|
2010-09-09 18:18:10 +00:00
|
|
|
GLboolean accelerated; // GL_TRUE if OpenGL context is "accelerated"
|
2010-09-09 16:15:32 +00:00
|
|
|
int glMajor, glMinor, glRevision;
|
2010-10-25 10:36:14 +00:00
|
|
|
GLboolean glForward, glDebug;
|
|
|
|
int glProfile;
|
2011-03-07 19:51:34 +00:00
|
|
|
int glRobustness;
|
2010-09-09 16:15:32 +00:00
|
|
|
PFNGLGETSTRINGIPROC GetStringi;
|
|
|
|
|
2010-10-14 14:40:10 +00:00
|
|
|
// These are defined in the current port's platform.h
|
2010-09-09 16:15:32 +00:00
|
|
|
_GLFW_PLATFORM_WINDOW_STATE;
|
2010-09-09 18:36:23 +00:00
|
|
|
_GLFW_PLATFORM_CONTEXT_STATE;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Library global data
|
|
|
|
//------------------------------------------------------------------------
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWlibrary
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2010-10-13 02:04:43 +00:00
|
|
|
_GLFWhints hints;
|
2010-09-09 22:06:23 +00:00
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
_GLFWwindow* windowListHead;
|
|
|
|
_GLFWwindow* currentWindow;
|
|
|
|
_GLFWwindow* activeWindow;
|
|
|
|
|
2010-10-24 16:28:55 +00:00
|
|
|
GLFWwindowsizefun windowSizeCallback;
|
|
|
|
GLFWwindowclosefun windowCloseCallback;
|
|
|
|
GLFWwindowrefreshfun windowRefreshCallback;
|
|
|
|
GLFWwindowfocusfun windowFocusCallback;
|
|
|
|
GLFWwindowiconifyfun windowIconifyCallback;
|
|
|
|
GLFWmousebuttonfun mouseButtonCallback;
|
|
|
|
GLFWmouseposfun mousePosCallback;
|
2012-01-30 21:30:40 +00:00
|
|
|
GLFWcursorenterfun cursorEnterCallback;
|
2010-10-24 16:28:55 +00:00
|
|
|
GLFWscrollfun scrollCallback;
|
|
|
|
GLFWkeyfun keyCallback;
|
|
|
|
GLFWcharfun charCallback;
|
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
GLFWgammaramp currentRamp;
|
|
|
|
GLFWgammaramp originalRamp;
|
|
|
|
int originalRampSize;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-10-14 14:40:10 +00:00
|
|
|
// This is defined in the current port's platform.h
|
2012-04-22 13:53:02 +00:00
|
|
|
_GLFW_PLATFORM_LIBRARY_WINDOW_STATE;
|
|
|
|
_GLFW_PLATFORM_LIBRARY_OPENGL_STATE;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
// System independent global variables (GLFW internals)
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
// Flag indicating if GLFW has been initialized
|
2010-09-08 15:30:21 +00:00
|
|
|
#if defined(_init_c_)
|
2010-09-09 18:18:10 +00:00
|
|
|
GLboolean _glfwInitialized = GL_FALSE;
|
2010-09-07 15:34:51 +00:00
|
|
|
#else
|
2010-09-09 18:18:10 +00:00
|
|
|
GLFWGLOBAL GLboolean _glfwInitialized;
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWGLOBAL _GLFWlibrary _glfwLibrary;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform specific implementation functions
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
// Init/terminate
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwPlatformInit(void);
|
|
|
|
int _glfwPlatformTerminate(void);
|
2010-09-13 16:05:59 +00:00
|
|
|
const char* _glfwPlatformGetVersionString(void);
|
2010-09-09 19:06:59 +00:00
|
|
|
|
2012-02-03 23:51:35 +00:00
|
|
|
// Input
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformEnableSystemKeys(_GLFWwindow* window);
|
|
|
|
void _glfwPlatformDisableSystemKeys(_GLFWwindow* window);
|
2012-04-06 12:37:31 +00:00
|
|
|
void _glfwPlatformSetMouseCursorPos(_GLFWwindow* window, int x, int y);
|
|
|
|
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Fullscreen
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwPlatformGetVideoModes(GLFWvidmode* list, int maxcount);
|
|
|
|
void _glfwPlatformGetDesktopMode(GLFWvidmode* mode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
// Gamma ramp
|
2010-10-13 20:42:31 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(GLFWgammaramp* ramp);
|
2010-10-13 02:04:43 +00:00
|
|
|
void _glfwPlatformSetGammaRamp(const GLFWgammaramp* ramp);
|
|
|
|
|
2011-09-21 09:09:47 +00:00
|
|
|
// Clipboard
|
2012-04-09 14:00:54 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string);
|
2012-04-11 22:51:58 +00:00
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window);
|
2011-09-21 09:09:47 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Joystick
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwPlatformGetJoystickParam(int joy, int param);
|
|
|
|
int _glfwPlatformGetJoystickPos(int joy, float* pos, int numaxes);
|
|
|
|
int _glfwPlatformGetJoystickButtons(int joy, unsigned char* buttons, int numbuttons);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Time
|
2010-09-08 15:30:21 +00:00
|
|
|
double _glfwPlatformGetTime(void);
|
|
|
|
void _glfwPlatformSetTime(double time);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
// Window management
|
2010-09-13 21:42:51 +00:00
|
|
|
int _glfwPlatformOpenWindow(_GLFWwindow* window, const _GLFWwndconfig* wndconfig, const _GLFWfbconfig* fbconfig);
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformCloseWindow(_GLFWwindow* window);
|
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title);
|
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height);
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int x, int y);
|
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window);
|
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window);
|
|
|
|
|
|
|
|
// Event management
|
|
|
|
void _glfwPlatformPollEvents(void);
|
|
|
|
void _glfwPlatformWaitEvents(void);
|
|
|
|
|
|
|
|
// OpenGL context management
|
2011-07-27 14:01:27 +00:00
|
|
|
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window);
|
2010-09-08 15:30:21 +00:00
|
|
|
void _glfwPlatformSwapBuffers(void);
|
|
|
|
void _glfwPlatformSwapInterval(int interval);
|
|
|
|
void _glfwPlatformRefreshWindowParams(void);
|
2010-09-09 16:15:32 +00:00
|
|
|
int _glfwPlatformExtensionSupported(const char* extension);
|
|
|
|
void* _glfwPlatformGetProcAddress(const char* procname);
|
2011-07-27 14:01:27 +00:00
|
|
|
void _glfwPlatformCopyContext(_GLFWwindow* src, _GLFWwindow* dst, unsigned long mask);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//========================================================================
|
|
|
|
// Prototypes for platform independent internal functions
|
|
|
|
//========================================================================
|
|
|
|
|
2010-09-16 01:48:19 +00:00
|
|
|
// Fullscren management (fullscreen.c)
|
|
|
|
void _glfwSplitBPP(int bpp, int* red, int* green, int* blue);
|
|
|
|
|
2011-03-07 12:56:28 +00:00
|
|
|
// Error handling (error.c)
|
2010-11-23 16:45:23 +00:00
|
|
|
void _glfwSetError(int error, const char* description);
|
2010-09-13 16:05:59 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
// Window management (window.c)
|
2011-03-07 13:16:31 +00:00
|
|
|
void _glfwSetDefaultWindowHints(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-01-31 14:27:15 +00:00
|
|
|
// Window event notification (window.c)
|
2011-10-09 15:10:40 +00:00
|
|
|
void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean activated);
|
|
|
|
void _glfwInputWindowPos(_GLFWwindow* window, int x, int y);
|
|
|
|
void _glfwInputWindowSize(_GLFWwindow* window, int width, int height);
|
|
|
|
void _glfwInputWindowIconify(_GLFWwindow* window, int iconified);
|
2011-10-09 19:12:13 +00:00
|
|
|
void _glfwInputWindowDamage(_GLFWwindow* window);
|
2011-10-09 15:10:40 +00:00
|
|
|
|
2012-01-31 14:27:15 +00:00
|
|
|
// Input event notification (input.c)
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwInputKey(_GLFWwindow* window, int key, int action);
|
2010-09-09 17:33:37 +00:00
|
|
|
void _glfwInputChar(_GLFWwindow* window, int character);
|
2012-03-28 19:54:09 +00:00
|
|
|
void _glfwInputScroll(_GLFWwindow* window, double x, double y);
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwInputMouseClick(_GLFWwindow* window, int button, int action);
|
2011-10-09 15:10:40 +00:00
|
|
|
void _glfwInputCursorMotion(_GLFWwindow* window, int x, int y);
|
2012-01-30 21:59:38 +00:00
|
|
|
void _glfwInputCursorEnter(_GLFWwindow* window, int entered);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2011-03-07 12:56:28 +00:00
|
|
|
// OpenGL context helpers (opengl.c)
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwStringInExtensionString(const char* string, const GLubyte* extensions);
|
|
|
|
const _GLFWfbconfig* _glfwChooseFBConfig(const _GLFWfbconfig* desired,
|
|
|
|
const _GLFWfbconfig* alternatives,
|
|
|
|
unsigned int count);
|
2011-03-07 13:55:11 +00:00
|
|
|
GLboolean _glfwIsValidContextConfig(_GLFWwndconfig* wndconfig);
|
|
|
|
GLboolean _glfwIsValidContext(_GLFWwindow* window, _GLFWwndconfig* wndconfig);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif // _internal_h_
|