2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2014-01-22 00:32:00 +00:00
|
|
|
// GLFW 3.1 - www.glfw.org
|
2010-09-07 15:34:51 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// 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_
|
|
|
|
|
|
|
|
|
2013-11-20 10:49:44 +00:00
|
|
|
#if defined(_GLFW_USE_CONFIG_H)
|
|
|
|
#include "glfw_config.h"
|
|
|
|
#endif
|
2013-01-15 21:43:44 +00:00
|
|
|
|
2014-01-01 14:29:57 +00:00
|
|
|
#define _GLFW_VERSION_NUMBER "3.1.0"
|
2013-11-20 12:58:57 +00:00
|
|
|
|
2013-01-16 05:38:17 +00:00
|
|
|
#if defined(_GLFW_USE_OPENGL)
|
|
|
|
// This is the default for glfw3.h
|
|
|
|
#elif defined(_GLFW_USE_GLESV1)
|
2013-01-15 21:43:44 +00:00
|
|
|
#define GLFW_INCLUDE_ES1
|
|
|
|
#elif defined(_GLFW_USE_GLESV2)
|
|
|
|
#define GLFW_INCLUDE_ES2
|
2013-01-16 05:38:17 +00:00
|
|
|
#else
|
|
|
|
#error "No supported client library selected"
|
2013-01-15 21:43:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Disable the inclusion of the platform glext.h by gl.h to allow proper
|
|
|
|
// inclusion of our own, newer glext.h below
|
|
|
|
#define GL_GLEXT_LEGACY
|
|
|
|
|
2013-05-22 20:46:34 +00:00
|
|
|
#include "../include/GLFW/glfw3.h"
|
2013-01-15 21:43:44 +00:00
|
|
|
|
|
|
|
#if defined(_GLFW_USE_OPENGL)
|
|
|
|
// This path may need to be changed if you build GLFW using your own setup
|
|
|
|
// GLFW comes with its own copy of glext.h since it uses fairly new extensions
|
|
|
|
// and not all development environments come with an up-to-date version
|
2013-04-17 13:42:21 +00:00
|
|
|
#include "../deps/GL/glext.h"
|
2013-01-15 21:43:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct _GLFWwndconfig _GLFWwndconfig;
|
2014-03-06 19:05:32 +00:00
|
|
|
typedef struct _GLFWctxconfig _GLFWctxconfig;
|
2013-01-15 21:43:44 +00:00
|
|
|
typedef struct _GLFWfbconfig _GLFWfbconfig;
|
|
|
|
typedef struct _GLFWwindow _GLFWwindow;
|
|
|
|
typedef struct _GLFWlibrary _GLFWlibrary;
|
|
|
|
typedef struct _GLFWmonitor _GLFWmonitor;
|
2013-12-04 13:19:22 +00:00
|
|
|
typedef struct _GLFWcursor _GLFWcursor;
|
2013-01-15 21:43:44 +00:00
|
|
|
|
|
|
|
#if defined(_GLFW_COCOA)
|
|
|
|
#include "cocoa_platform.h"
|
|
|
|
#elif defined(_GLFW_WIN32)
|
|
|
|
#include "win32_platform.h"
|
|
|
|
#elif defined(_GLFW_X11)
|
|
|
|
#include "x11_platform.h"
|
2014-03-17 21:53:43 +00:00
|
|
|
#elif defined(_GLFW_WAYLAND)
|
2014-04-08 15:20:42 +00:00
|
|
|
#include "wl_platform.h"
|
2013-01-15 21:43:44 +00:00
|
|
|
#else
|
|
|
|
#error "No supported window creation API selected"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
//========================================================================
|
|
|
|
// Doxygen group definitions
|
|
|
|
//========================================================================
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @defgroup platform Platform interface
|
|
|
|
* @brief The interface implemented by the platform-specific code.
|
2013-01-02 01:21:38 +00:00
|
|
|
*
|
|
|
|
* The platform API is the interface exposed by the platform-specific code for
|
|
|
|
* each platform and is called by the shared code of the public API It mirrors
|
|
|
|
* the public API except it uses objects instead of handles.
|
|
|
|
*/
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @defgroup event Event interface
|
|
|
|
* @brief The interface used by the platform-specific code to report events.
|
2013-01-02 01:21:38 +00:00
|
|
|
*
|
|
|
|
* The event API is used by the platform-specific code to notify the shared
|
|
|
|
* code of events that can be translated into state changes and/or callback
|
|
|
|
* calls.
|
|
|
|
*/
|
|
|
|
/*! @defgroup utility Utility functions
|
2013-02-14 12:14:17 +00:00
|
|
|
* @brief Various utility functions for internal use.
|
2013-01-02 01:21:38 +00:00
|
|
|
*
|
|
|
|
* These functions are shared code and may be used by any part of GLFW
|
|
|
|
* Each platform may add its own utility functions, but those may only be
|
|
|
|
* called by the platform-specific code
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
2013-01-15 21:43:44 +00:00
|
|
|
// Helper macros
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2013-02-19 23:28:08 +00:00
|
|
|
// Checks for whether the library has been intitalized
|
|
|
|
#define _GLFW_REQUIRE_INIT() \
|
|
|
|
if (!_glfwInitialized) \
|
|
|
|
{ \
|
|
|
|
_glfwInputError(GLFW_NOT_INITIALIZED, NULL); \
|
|
|
|
return; \
|
|
|
|
}
|
|
|
|
#define _GLFW_REQUIRE_INIT_OR_RETURN(x) \
|
|
|
|
if (!_glfwInitialized) \
|
|
|
|
{ \
|
|
|
|
_glfwInputError(GLFW_NOT_INITIALIZED, NULL); \
|
|
|
|
return x; \
|
|
|
|
}
|
|
|
|
|
2013-07-30 12:43:01 +00:00
|
|
|
// Swaps the provided pointers
|
|
|
|
#define _GLFW_SWAP_POINTERS(x, y) \
|
|
|
|
{ \
|
|
|
|
void* t; \
|
|
|
|
t = x; \
|
|
|
|
x = y; \
|
|
|
|
y = t; \
|
|
|
|
}
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-04-22 19:49:38 +00:00
|
|
|
//========================================================================
|
2013-01-15 21:43:44 +00:00
|
|
|
// Internal types
|
2013-01-02 01:21:38 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2014-03-06 19:05:32 +00:00
|
|
|
/*! @brief Window configuration.
|
2013-01-02 01:21:38 +00:00
|
|
|
*
|
2014-03-06 19:05:32 +00:00
|
|
|
* Parameters relating to the creation of the window but not directly related
|
|
|
|
* to the framebuffer. This is used to pass context creation parameters from
|
|
|
|
* shared code to the platform API.
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWwndconfig
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2012-11-25 13:53:33 +00:00
|
|
|
int width;
|
|
|
|
int height;
|
2010-10-04 16:17:53 +00:00
|
|
|
const char* title;
|
2011-11-02 15:56:34 +00:00
|
|
|
GLboolean resizable;
|
2012-08-21 19:18:09 +00:00
|
|
|
GLboolean visible;
|
2013-04-08 13:16:32 +00:00
|
|
|
GLboolean decorated;
|
2012-09-27 19:37:36 +00:00
|
|
|
_GLFWmonitor* monitor;
|
2014-03-06 19:05:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*! @brief Context configuration.
|
|
|
|
*
|
|
|
|
* Parameters relating to the creation of the context but not directly related
|
|
|
|
* to the framebuffer. This is used to pass context creation parameters from
|
|
|
|
* shared code to the platform API.
|
|
|
|
*/
|
|
|
|
struct _GLFWctxconfig
|
|
|
|
{
|
|
|
|
int api;
|
|
|
|
int major;
|
|
|
|
int minor;
|
|
|
|
GLboolean forward;
|
|
|
|
GLboolean debug;
|
|
|
|
int profile;
|
|
|
|
int robustness;
|
2010-10-04 16:17:53 +00:00
|
|
|
_GLFWwindow* share;
|
|
|
|
};
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Framebuffer configuration.
|
|
|
|
*
|
2013-05-13 13:49:59 +00:00
|
|
|
* This describes buffers and their sizes. It also contains
|
|
|
|
* a platform-specific ID used to map back to the backend API's object.
|
|
|
|
*
|
|
|
|
* It is used to pass framebuffer parameters from shared code to the platform
|
|
|
|
* API and also to enumerate and select available framebuffer configs.
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
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;
|
2012-12-02 15:10:00 +00:00
|
|
|
GLboolean sRGB;
|
2013-05-13 13:49:59 +00:00
|
|
|
|
2014-04-08 14:25:35 +00:00
|
|
|
// This is defined in the context API's context.h
|
2013-05-13 13:49:59 +00:00
|
|
|
_GLFW_PLATFORM_FBCONFIG;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Window and context 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
|
2013-01-02 15:48:02 +00:00
|
|
|
GLboolean iconified;
|
|
|
|
GLboolean resizable;
|
2013-04-08 13:16:32 +00:00
|
|
|
GLboolean decorated;
|
2013-01-02 15:48:02 +00:00
|
|
|
GLboolean visible;
|
2013-01-17 19:31:16 +00:00
|
|
|
GLboolean closed;
|
2013-01-02 15:48:02 +00:00
|
|
|
void* userPointer;
|
2013-01-02 16:29:24 +00:00
|
|
|
GLFWvidmode videoMode;
|
2013-01-02 15:48:02 +00:00
|
|
|
_GLFWmonitor* monitor;
|
2013-12-04 13:19:22 +00:00
|
|
|
_GLFWcursor* cursor;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-09-09 18:18:10 +00:00
|
|
|
// Window input state
|
2013-01-02 15:48:02 +00:00
|
|
|
GLboolean stickyKeys;
|
|
|
|
GLboolean stickyMouseButtons;
|
2013-04-04 14:16:21 +00:00
|
|
|
double cursorPosX, cursorPosY;
|
2013-01-02 15:48:02 +00:00
|
|
|
int cursorMode;
|
|
|
|
char mouseButton[GLFW_MOUSE_BUTTON_LAST + 1];
|
|
|
|
char key[GLFW_KEY_LAST + 1];
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
// OpenGL extensions and context attributes
|
2014-03-06 19:05:32 +00:00
|
|
|
struct {
|
|
|
|
int api;
|
|
|
|
int major, minor, revision;
|
|
|
|
GLboolean forward, debug;
|
|
|
|
int profile;
|
|
|
|
int robustness;
|
|
|
|
} context;
|
|
|
|
|
2013-01-15 03:26:11 +00:00
|
|
|
#if defined(_GLFW_USE_OPENGL)
|
2010-09-09 16:15:32 +00:00
|
|
|
PFNGLGETSTRINGIPROC GetStringi;
|
2013-01-15 03:26:11 +00:00
|
|
|
#endif
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2013-01-15 20:34:26 +00:00
|
|
|
struct {
|
2013-06-03 10:51:57 +00:00
|
|
|
GLFWwindowposfun pos;
|
|
|
|
GLFWwindowsizefun size;
|
|
|
|
GLFWwindowclosefun close;
|
|
|
|
GLFWwindowrefreshfun refresh;
|
|
|
|
GLFWwindowfocusfun focus;
|
|
|
|
GLFWwindowiconifyfun iconify;
|
|
|
|
GLFWframebuffersizefun fbsize;
|
|
|
|
GLFWmousebuttonfun mouseButton;
|
|
|
|
GLFWcursorposfun cursorPos;
|
|
|
|
GLFWcursorenterfun cursorEnter;
|
|
|
|
GLFWscrollfun scroll;
|
|
|
|
GLFWkeyfun key;
|
|
|
|
GLFWcharfun character;
|
2013-07-10 09:42:14 +00:00
|
|
|
GLFWdropfun drop;
|
2013-01-15 20:34:26 +00:00
|
|
|
} callbacks;
|
2012-10-28 12:45:11 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
// This is defined in the window API's platform.h
|
2010-09-09 16:15:32 +00:00
|
|
|
_GLFW_PLATFORM_WINDOW_STATE;
|
2014-04-08 14:25:35 +00:00
|
|
|
// This is defined in the context API's context.h
|
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
|
|
|
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Monitor structure.
|
|
|
|
*/
|
2011-10-03 07:24:35 +00:00
|
|
|
struct _GLFWmonitor
|
2011-05-07 08:53:50 +00:00
|
|
|
{
|
2013-01-02 15:48:02 +00:00
|
|
|
char* name;
|
2012-09-13 15:46:40 +00:00
|
|
|
|
2013-01-02 15:48:02 +00:00
|
|
|
// Physical dimensions in millimeters.
|
|
|
|
int widthMM, heightMM;
|
2011-10-02 20:13:47 +00:00
|
|
|
|
2013-01-02 15:48:02 +00:00
|
|
|
GLFWvidmode* modes;
|
|
|
|
int modeCount;
|
2013-05-22 20:16:43 +00:00
|
|
|
GLFWvidmode currentMode;
|
2012-08-03 00:57:33 +00:00
|
|
|
|
2013-02-12 12:50:41 +00:00
|
|
|
GLFWgammaramp originalRamp;
|
2013-05-19 13:46:44 +00:00
|
|
|
GLFWgammaramp currentRamp;
|
2013-02-12 12:50:41 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
// This is defined in the window API's platform.h
|
2011-10-03 07:24:35 +00:00
|
|
|
_GLFW_PLATFORM_MONITOR_STATE;
|
2011-05-07 08:53:50 +00:00
|
|
|
};
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
/*! @brief Cursor structure
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct _GLFWcursor
|
|
|
|
{
|
|
|
|
_GLFWcursor* next;
|
|
|
|
|
|
|
|
// This is defined in the window API's platform.h
|
|
|
|
_GLFW_PLATFORM_CURSOR_STATE;
|
|
|
|
};
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Library global data.
|
|
|
|
*/
|
2010-10-04 16:17:53 +00:00
|
|
|
struct _GLFWlibrary
|
2010-09-09 18:18:10 +00:00
|
|
|
{
|
2013-04-24 21:47:08 +00:00
|
|
|
struct {
|
|
|
|
int redBits;
|
|
|
|
int greenBits;
|
|
|
|
int blueBits;
|
|
|
|
int alphaBits;
|
|
|
|
int depthBits;
|
|
|
|
int stencilBits;
|
|
|
|
int accumRedBits;
|
|
|
|
int accumGreenBits;
|
|
|
|
int accumBlueBits;
|
|
|
|
int accumAlphaBits;
|
|
|
|
int auxBuffers;
|
|
|
|
GLboolean stereo;
|
|
|
|
GLboolean resizable;
|
|
|
|
GLboolean visible;
|
|
|
|
GLboolean decorated;
|
|
|
|
int samples;
|
|
|
|
GLboolean sRGB;
|
2013-05-30 18:42:50 +00:00
|
|
|
int refreshRate;
|
2014-03-06 19:05:32 +00:00
|
|
|
int api;
|
|
|
|
int major;
|
|
|
|
int minor;
|
|
|
|
GLboolean forward;
|
|
|
|
GLboolean debug;
|
|
|
|
int profile;
|
|
|
|
int robustness;
|
2013-04-24 21:47:08 +00:00
|
|
|
} hints;
|
2010-09-09 22:06:23 +00:00
|
|
|
|
2013-04-16 18:46:58 +00:00
|
|
|
double cursorPosX, cursorPosY;
|
|
|
|
|
2013-12-04 13:19:22 +00:00
|
|
|
_GLFWcursor* cursorListHead;
|
|
|
|
|
2013-01-02 15:48:02 +00:00
|
|
|
_GLFWwindow* windowListHead;
|
|
|
|
_GLFWwindow* focusedWindow;
|
2012-09-12 17:35:52 +00:00
|
|
|
|
2013-01-02 15:48:02 +00:00
|
|
|
_GLFWmonitor** monitors;
|
|
|
|
int monitorCount;
|
2013-07-30 15:06:06 +00:00
|
|
|
|
|
|
|
struct {
|
|
|
|
GLFWmonitorfun monitor;
|
|
|
|
} callbacks;
|
2010-10-24 16:28:55 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
// This is defined in the window API's platform.h
|
2012-04-22 13:53:02 +00:00
|
|
|
_GLFW_PLATFORM_LIBRARY_WINDOW_STATE;
|
2014-04-08 14:25:35 +00:00
|
|
|
// This is defined in the context API's context.h
|
2014-04-08 14:29:38 +00:00
|
|
|
_GLFW_PLATFORM_LIBRARY_CONTEXT_STATE;
|
2014-03-27 16:19:22 +00:00
|
|
|
// This is defined in the platform's time.h
|
|
|
|
_GLFW_PLATFORM_LIBRARY_TIME_STATE;
|
2014-03-19 14:27:49 +00:00
|
|
|
// This is defined in the platform's joystick.h
|
|
|
|
_GLFW_PLATFORM_LIBRARY_JOYSTICK_STATE;
|
2014-03-30 12:37:20 +00:00
|
|
|
// This is defined in the platform's tls.h
|
|
|
|
_GLFW_PLATFORM_TLS_STATE;
|
2010-10-04 16:17:53 +00:00
|
|
|
};
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
//========================================================================
|
2012-08-26 18:11:32 +00:00
|
|
|
// Global state shared between compilation units of GLFW
|
2013-01-02 01:21:38 +00:00
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
/*! @brief Flag indicating whether GLFW has been successfully initialized.
|
|
|
|
*/
|
2012-08-26 16:42:15 +00:00
|
|
|
extern GLboolean _glfwInitialized;
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief All global data protected by @ref _glfwInitialized.
|
|
|
|
* This should only be touched after a call to @ref glfwInit that has not been
|
|
|
|
* followed by a call to @ref glfwTerminate.
|
|
|
|
*/
|
2013-01-02 00:40:42 +00:00
|
|
|
extern _GLFWlibrary _glfw;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2013-01-02 01:21:38 +00:00
|
|
|
// Platform API functions
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Initializes the platform-specific part of the library.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @return `GL_TRUE` if successful, or `GL_FALSE` if an error occurred.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwPlatformInit(void);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Terminates the platform-specific part of the library.
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2012-12-30 00:15:48 +00:00
|
|
|
void _glfwPlatformTerminate(void);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetVersionString
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*
|
|
|
|
* @note The returned string must be available for the duration of the program.
|
|
|
|
*
|
|
|
|
* @note The returned string must not change for the duration of the program.
|
|
|
|
*/
|
2010-09-13 16:05:59 +00:00
|
|
|
const char* _glfwPlatformGetVersionString(void);
|
2010-09-09 19:06:59 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetCursorPos
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double xpos, double ypos);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2014-01-15 12:21:13 +00:00
|
|
|
/*! @brief Applies the cursor mode of the specified window to the system.
|
|
|
|
* @param[in] window The window whose cursor mode to apply.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2014-01-15 12:21:13 +00:00
|
|
|
void _glfwPlatformApplyCursorMode(_GLFWwindow* window);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetMonitors
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-09-12 17:35:52 +00:00
|
|
|
_GLFWmonitor** _glfwPlatformGetMonitors(int* count);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-04-22 12:43:13 +00:00
|
|
|
/*! @brief Checks whether two monitor objects represent the same monitor.
|
|
|
|
*
|
|
|
|
* @param[in] first The first monitor.
|
|
|
|
* @param[in] second The second monitor.
|
|
|
|
* @return @c GL_TRUE if the monitor objects represent the same monitor, or @c
|
|
|
|
* GL_FALSE otherwise.
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
|
|
|
GLboolean _glfwPlatformIsSameMonitor(_GLFWmonitor* first, _GLFWmonitor* second);
|
|
|
|
|
2013-02-20 15:00:53 +00:00
|
|
|
/*! @copydoc glfwGetMonitorPos
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
|
|
|
void _glfwPlatformGetMonitorPos(_GLFWmonitor* monitor, int* xpos, int* ypos);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetVideoModes
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-08-03 00:57:33 +00:00
|
|
|
GLFWvidmode* _glfwPlatformGetVideoModes(_GLFWmonitor* monitor, int* count);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @ingroup platform
|
|
|
|
*/
|
2012-08-29 23:53:23 +00:00
|
|
|
void _glfwPlatformGetVideoMode(_GLFWmonitor* monitor, GLFWvidmode* mode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetGammaRamp
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2013-02-12 12:50:41 +00:00
|
|
|
void _glfwPlatformGetGammaRamp(_GLFWmonitor* monitor, GLFWgammaramp* ramp);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetGammaRamp
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2013-02-12 12:50:41 +00:00
|
|
|
void _glfwPlatformSetGammaRamp(_GLFWmonitor* monitor, const GLFWgammaramp* ramp);
|
2010-10-13 02:04:43 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetClipboardString
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2012-04-09 14:00:54 +00:00
|
|
|
void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetClipboardString
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*
|
|
|
|
* @note The returned string must be valid until the next call to @ref
|
|
|
|
* _glfwPlatformGetClipboardString or @ref _glfwPlatformSetClipboardString.
|
|
|
|
*/
|
2012-04-11 22:51:58 +00:00
|
|
|
const char* _glfwPlatformGetClipboardString(_GLFWwindow* window);
|
2011-09-21 09:09:47 +00:00
|
|
|
|
2013-04-24 17:25:42 +00:00
|
|
|
/*! @copydoc glfwJoystickPresent
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2013-04-24 17:25:42 +00:00
|
|
|
int _glfwPlatformJoystickPresent(int joy);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetJoystickAxes
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2013-06-04 16:20:38 +00:00
|
|
|
const float* _glfwPlatformGetJoystickAxes(int joy, int* count);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetJoystickButtons
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2013-06-04 16:20:38 +00:00
|
|
|
const unsigned char* _glfwPlatformGetJoystickButtons(int joy, int* count);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetJoystickName
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-09-06 23:01:34 +00:00
|
|
|
const char* _glfwPlatformGetJoystickName(int joy);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetTime
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2010-09-08 15:30:21 +00:00
|
|
|
double _glfwPlatformGetTime(void);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetTime
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2010-09-08 15:30:21 +00:00
|
|
|
void _glfwPlatformSetTime(double time);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @ingroup platform
|
|
|
|
*/
|
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
2014-03-06 19:05:32 +00:00
|
|
|
const _GLFWctxconfig* ctxconfig,
|
2013-01-02 01:21:38 +00:00
|
|
|
const _GLFWfbconfig* fbconfig);
|
|
|
|
|
|
|
|
/*! @ingroup platform
|
|
|
|
*/
|
2012-08-06 15:56:41 +00:00
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetWindowTitle
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetWindowPos
|
|
|
|
* @ingroup platform
|
2013-01-24 18:30:31 +00:00
|
|
|
*/
|
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window, int* xpos, int* ypos);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetWindowPos
|
|
|
|
* @ingroup platform
|
2013-01-24 18:30:31 +00:00
|
|
|
*/
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window, int xpos, int ypos);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetWindowSize
|
|
|
|
* @ingroup platform
|
2012-11-25 13:53:33 +00:00
|
|
|
*/
|
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSetWindowSize
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-06-03 10:51:57 +00:00
|
|
|
/*! @copydoc glfwGetFramebufferSize
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* height);
|
|
|
|
|
2014-03-25 20:30:13 +00:00
|
|
|
/*! @copydoc glfwGetWindowFrameSize
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window, int* left, int* top, int* right, int* bottom);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwIconifyWindow
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwRestoreWindow
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwShowWindow
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-08-21 18:01:57 +00:00
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwHideWindow
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-08-21 18:01:57 +00:00
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window);
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwPollEvents
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformPollEvents(void);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwWaitEvents
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-09 16:15:32 +00:00
|
|
|
void _glfwPlatformWaitEvents(void);
|
|
|
|
|
2014-02-10 17:16:58 +00:00
|
|
|
/*! @copydoc glfwPostEmptyEvent
|
|
|
|
* @ingroup platform
|
|
|
|
*/
|
|
|
|
void _glfwPlatformPostEmptyEvent(void);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwMakeContextCurrent
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2011-07-27 14:01:27 +00:00
|
|
|
void _glfwPlatformMakeContextCurrent(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetCurrentContext
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-08-12 12:13:18 +00:00
|
|
|
_GLFWwindow* _glfwPlatformGetCurrentContext(void);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSwapBuffers
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2012-08-06 16:13:37 +00:00
|
|
|
void _glfwPlatformSwapBuffers(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwSwapInterval
|
|
|
|
* @ingroup platform
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2010-09-08 15:30:21 +00:00
|
|
|
void _glfwPlatformSwapInterval(int interval);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @ingroup platform
|
|
|
|
*/
|
|
|
|
int _glfwPlatformExtensionSupported(const char* extension);
|
|
|
|
|
2013-02-14 12:14:17 +00:00
|
|
|
/*! @copydoc glfwGetProcAddress
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup platform
|
|
|
|
*/
|
2012-06-04 22:16:40 +00:00
|
|
|
GLFWglproc _glfwPlatformGetProcAddress(const char* procname);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2014-02-23 15:43:17 +00:00
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor, const GLFWimage* image, int xhot, int yhot);
|
2013-12-04 13:19:22 +00:00
|
|
|
|
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor);
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2013-01-02 01:21:38 +00:00
|
|
|
// Event API functions
|
2010-09-07 15:34:51 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Notifies shared code of a window focus event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @param[in] focused `GL_TRUE` if the window received focus, or `GL_FALSE`
|
2013-01-02 01:21:38 +00:00
|
|
|
* if it lost focus.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-11-22 16:04:44 +00:00
|
|
|
void _glfwInputWindowFocus(_GLFWwindow* window, GLboolean focused);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a window movement event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-02-14 12:14:17 +00:00
|
|
|
* @param[in] xpos The new x-coordinate of the client area of the window.
|
|
|
|
* @param[in] ypos The new y-coordinate of the client area of the window.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup event
|
|
|
|
*/
|
2013-02-14 12:14:17 +00:00
|
|
|
void _glfwInputWindowPos(_GLFWwindow* window, int xpos, int ypos);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a window resize event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] width The new width of the client area of the window.
|
|
|
|
* @param[in] height The new height of the client area of the window.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2011-10-09 15:10:40 +00:00
|
|
|
void _glfwInputWindowSize(_GLFWwindow* window, int width, int height);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-06-03 10:51:57 +00:00
|
|
|
/*! @brief Notifies shared code of a framebuffer resize event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] width The new width, in pixels, of the framebuffer.
|
|
|
|
* @param[in] height The new height, in pixels, of the framebuffer.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
|
|
|
void _glfwInputFramebufferSize(_GLFWwindow* window, int width, int height);
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Notifies shared code of a window iconification event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @param[in] iconified `GL_TRUE` if the window was iconified, or `GL_FALSE`
|
2013-01-02 01:21:38 +00:00
|
|
|
* if it was restored.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2011-10-09 15:10:40 +00:00
|
|
|
void _glfwInputWindowIconify(_GLFWwindow* window, int iconified);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a window show/hide event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @param[in] visible `GL_TRUE` if the window was shown, or `GL_FALSE` if it
|
2013-01-02 01:21:38 +00:00
|
|
|
* was hidden.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-08-21 19:18:09 +00:00
|
|
|
void _glfwInputWindowVisibility(_GLFWwindow* window, int visible);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a window damage event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
*/
|
2011-10-09 19:12:13 +00:00
|
|
|
void _glfwInputWindowDamage(_GLFWwindow* window);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a window close request event
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-08-10 11:31:15 +00:00
|
|
|
void _glfwInputWindowCloseRequest(_GLFWwindow* window);
|
2011-10-09 15:10:40 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Notifies shared code of a physical key event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] key The key that was pressed or released.
|
2013-05-30 15:19:12 +00:00
|
|
|
* @param[in] scancode The system-specific scan code of the key.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @param[in] action @ref GLFW_PRESS or @ref GLFW_RELEASE.
|
2012-12-09 18:19:00 +00:00
|
|
|
* @param[in] mods The modifiers pressed when the event was generated.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup event
|
|
|
|
*/
|
2013-05-30 15:19:12 +00:00
|
|
|
void _glfwInputKey(_GLFWwindow* window, int key, int scancode, int action, int mods);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a Unicode character input event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-10-10 17:41:56 +00:00
|
|
|
* @param[in] codepoint The Unicode code point of the input character.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup event
|
|
|
|
*/
|
2013-10-10 17:41:56 +00:00
|
|
|
void _glfwInputChar(_GLFWwindow* window, unsigned int codepoint);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a scroll event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] x The scroll offset along the x-axis.
|
|
|
|
* @param[in] y The scroll offset along the y-axis.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-03-28 19:54:09 +00:00
|
|
|
void _glfwInputScroll(_GLFWwindow* window, double x, double y);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a mouse button click event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] button The button that was pressed or released.
|
|
|
|
* @param[in] action @ref GLFW_PRESS or @ref GLFW_RELEASE.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-12-09 18:19:00 +00:00
|
|
|
void _glfwInputMouseClick(_GLFWwindow* window, int button, int action, int mods);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a cursor motion event.
|
|
|
|
* @param[in] window The window that received the event.
|
|
|
|
* @param[in] x The new x-coordinate of the cursor, relative to the left edge
|
|
|
|
* of the client area of the window.
|
|
|
|
* @param[in] y The new y-coordinate of the cursor, relative to the top edge
|
|
|
|
* of the client area of the window.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2013-04-04 14:16:21 +00:00
|
|
|
void _glfwInputCursorMotion(_GLFWwindow* window, double x, double y);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Notifies shared code of a cursor enter/leave event.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @param[in] entered `GL_TRUE` if the cursor entered the client area of the
|
|
|
|
* window, or `GL_FALSE` if it left it.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-01-30 21:59:38 +00:00
|
|
|
void _glfwInputCursorEnter(_GLFWwindow* window, int entered);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @ingroup event
|
|
|
|
*/
|
2012-09-12 17:35:52 +00:00
|
|
|
void _glfwInputMonitorChange(void);
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Notifies shared code of an error.
|
|
|
|
* @param[in] error The error code most suitable for the error.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @param[in] format The `printf` style format string of the error
|
2013-01-02 01:21:38 +00:00
|
|
|
* description.
|
|
|
|
* @ingroup event
|
|
|
|
*/
|
2012-12-31 20:05:28 +00:00
|
|
|
void _glfwInputError(int error, const char* format, ...);
|
|
|
|
|
2013-07-10 09:42:14 +00:00
|
|
|
/*! @brief Notifies dropped object over window.
|
|
|
|
* @param[in] window The window that received the event.
|
2013-12-22 18:28:46 +00:00
|
|
|
* @param[in] count The number of dropped objects.
|
|
|
|
* @param[in] names The names of the dropped objects.
|
2013-07-10 09:42:14 +00:00
|
|
|
* @ingroup event
|
|
|
|
*/
|
2013-12-22 18:28:46 +00:00
|
|
|
void _glfwInputDrop(_GLFWwindow* window, int count, const char** names);
|
2013-07-10 09:42:14 +00:00
|
|
|
|
2012-08-27 01:25:58 +00:00
|
|
|
|
|
|
|
//========================================================================
|
2013-01-02 01:21:38 +00:00
|
|
|
// Utility functions
|
2012-08-27 01:25:58 +00:00
|
|
|
//========================================================================
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @ingroup utility
|
|
|
|
*/
|
2013-01-02 16:29:24 +00:00
|
|
|
const GLFWvidmode* _glfwChooseVideoMode(_GLFWmonitor* monitor,
|
|
|
|
const GLFWvidmode* desired);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Performs lexical comparison between two @ref GLFWvidmode structures.
|
|
|
|
* @ingroup utility
|
|
|
|
*/
|
2012-08-27 01:25:58 +00:00
|
|
|
int _glfwCompareVideoModes(const GLFWvidmode* first, const GLFWvidmode* second);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Splits a color depth into red, green and blue bit depths.
|
|
|
|
* @ingroup utility
|
|
|
|
*/
|
2012-08-27 01:25:58 +00:00
|
|
|
void _glfwSplitBPP(int bpp, int* red, int* green, int* blue);
|
|
|
|
|
2013-01-02 01:21:38 +00:00
|
|
|
/*! @brief Searches an extension string for the specified extension.
|
|
|
|
* @param[in] string The extension string to search.
|
2013-02-14 12:14:17 +00:00
|
|
|
* @param[in] extensions The extension to search for.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @return `GL_TRUE` if the extension was found, or `GL_FALSE` otherwise.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup utility
|
|
|
|
*/
|
2010-09-08 15:30:21 +00:00
|
|
|
int _glfwStringInExtensionString(const char* string, const GLubyte* extensions);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-05-13 13:49:59 +00:00
|
|
|
/*! @brief Chooses the framebuffer config that best matches the desired one.
|
|
|
|
* @param[in] desired The desired framebuffer config.
|
|
|
|
* @param[in] alternatives The framebuffer configs supported by the system.
|
|
|
|
* @param[in] count The number of entries in the alternatives array.
|
|
|
|
* @return The framebuffer config most closely matching the desired one, or @c
|
|
|
|
* NULL if none fulfilled the hard constraints of the desired values.
|
|
|
|
* @ingroup utility
|
|
|
|
*/
|
|
|
|
const _GLFWfbconfig* _glfwChooseFBConfig(const _GLFWfbconfig* desired,
|
|
|
|
const _GLFWfbconfig* alternatives,
|
|
|
|
unsigned int count);
|
|
|
|
|
2013-05-27 13:30:32 +00:00
|
|
|
/*! @brief Retrieves the attributes of the current context.
|
2014-03-06 19:05:32 +00:00
|
|
|
* @param[in] ctxconfig The desired context attributes.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @return `GL_TRUE` if successful, or `GL_FALSE` if the context is unusable.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup utility
|
|
|
|
*/
|
2014-03-06 19:05:32 +00:00
|
|
|
GLboolean _glfwRefreshContextAttribs(const _GLFWctxconfig* ctxconfig);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-05-27 13:30:32 +00:00
|
|
|
/*! @brief Checks whether the desired context attributes are valid.
|
2014-03-06 19:05:32 +00:00
|
|
|
* @param[in] ctxconfig The context attributes to check.
|
2013-05-27 13:30:32 +00:00
|
|
|
* @return `GL_TRUE` if the context attributes are valid, or `GL_FALSE`
|
2013-01-02 01:21:38 +00:00
|
|
|
* otherwise.
|
|
|
|
* @ingroup utility
|
|
|
|
*
|
|
|
|
* This function checks things like whether the specified client API version
|
|
|
|
* exists and whether all relevant options have supported and non-conflicting
|
|
|
|
* values.
|
|
|
|
*/
|
2014-03-06 19:05:32 +00:00
|
|
|
GLboolean _glfwIsValidContextConfig(const _GLFWctxconfig* ctxconfig);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @brief Checks whether the current context fulfils the specified hard
|
|
|
|
* constraints.
|
2014-03-06 19:05:32 +00:00
|
|
|
* @param[in] ctxconfig The desired context attributes.
|
2013-03-12 14:33:05 +00:00
|
|
|
* @return `GL_TRUE` if the context fulfils the hard constraints, or `GL_FALSE`
|
|
|
|
* otherwise.
|
2013-01-02 01:21:38 +00:00
|
|
|
* @ingroup utility
|
|
|
|
*/
|
2014-03-06 19:05:32 +00:00
|
|
|
GLboolean _glfwIsValidContext(const _GLFWctxconfig* ctxconfig);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2013-05-19 13:46:44 +00:00
|
|
|
/*! @ingroup utility
|
|
|
|
*/
|
2013-07-04 12:51:52 +00:00
|
|
|
void _glfwAllocGammaArrays(GLFWgammaramp* ramp, unsigned int size);
|
2013-05-19 13:46:44 +00:00
|
|
|
|
|
|
|
/*! @ingroup utility
|
|
|
|
*/
|
2013-07-04 12:51:52 +00:00
|
|
|
void _glfwFreeGammaArrays(GLFWgammaramp* ramp);
|
2013-05-19 13:46:44 +00:00
|
|
|
|
2013-11-24 22:31:26 +00:00
|
|
|
/*! @brief Allocates and returns a monitor object with the specified name
|
|
|
|
* and dimensions.
|
|
|
|
* @param[in] name The name of the monitor.
|
|
|
|
* @param[in] widthMM The width, in mm, of the monitor's display area.
|
|
|
|
* @param[in] heightMM The height, in mm, of the monitor's display area.
|
|
|
|
* @return The newly created object.
|
|
|
|
* @ingroup utility
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2014-01-21 14:23:11 +00:00
|
|
|
_GLFWmonitor* _glfwAllocMonitor(const char* name, int widthMM, int heightMM);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
2013-11-24 22:31:26 +00:00
|
|
|
/*! @brief Frees a monitor object and any data associated with it.
|
|
|
|
* @ingroup utility
|
2013-01-02 01:21:38 +00:00
|
|
|
*/
|
2014-01-21 14:23:11 +00:00
|
|
|
void _glfwFreeMonitor(_GLFWmonitor* monitor);
|
2013-01-02 01:21:38 +00:00
|
|
|
|
|
|
|
/*! @ingroup utility
|
|
|
|
*/
|
2014-01-21 14:23:11 +00:00
|
|
|
void _glfwFreeMonitors(_GLFWmonitor** monitors, int count);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#endif // _internal_h_
|