2010-11-17 14:42:55 +00:00
|
|
|
/*************************************************************************
|
2011-03-06 00:46:39 +00:00
|
|
|
* GLFW - An OpenGL library
|
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
|
2010-11-09 01:57:46 +00:00
|
|
|
* Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
2010-09-07 15:34:51 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*************************************************************************/
|
|
|
|
|
2010-11-09 01:58:35 +00:00
|
|
|
#ifndef __glfw3_h__
|
|
|
|
#define __glfw3_h__
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Global definitions
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/* ------------------- BEGIN SYSTEM/COMPILER SPECIFIC -------------------- */
|
|
|
|
|
|
|
|
/* Please report any probles that you find with your compiler, which may
|
|
|
|
* be solved in this section! There are several compilers that I have not
|
|
|
|
* been able to test this file with yet.
|
|
|
|
*
|
|
|
|
* First: If we are we on Windows, we want a single define for it (_WIN32)
|
|
|
|
* (Note: For Cygwin the compiler flag -mwin32 should be used, but to
|
|
|
|
* make sure that things run smoothly for Cygwin users, we add __CYGWIN__
|
|
|
|
* to the list of "valid Win32 identifiers", which removes the need for
|
|
|
|
* -mwin32)
|
|
|
|
*/
|
|
|
|
#if !defined(_WIN32) && (defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__))
|
|
|
|
#define _WIN32
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
|
|
|
/* In order for extension support to be portable, we need to define an
|
|
|
|
* OpenGL function call method. We use the keyword APIENTRY, which is
|
|
|
|
* defined for Win32. (Note: Windows also needs this for <GL/gl.h>)
|
|
|
|
*/
|
|
|
|
#ifndef APIENTRY
|
|
|
|
#ifdef _WIN32
|
|
|
|
#define APIENTRY __stdcall
|
|
|
|
#else
|
|
|
|
#define APIENTRY
|
|
|
|
#endif
|
|
|
|
#endif /* APIENTRY */
|
|
|
|
|
|
|
|
|
|
|
|
/* The following three defines are here solely to make some Windows-based
|
|
|
|
* <GL/gl.h> files happy. Theoretically we could include <windows.h>, but
|
|
|
|
* it has the major drawback of severely polluting our namespace.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Under Windows, we need WINGDIAPI defined */
|
|
|
|
#if !defined(WINGDIAPI) && defined(_WIN32)
|
|
|
|
#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__POCC__)
|
|
|
|
/* Microsoft Visual C++, Borland C++ Builder and Pelles C */
|
|
|
|
#define WINGDIAPI __declspec(dllimport)
|
|
|
|
#elif defined(__LCC__)
|
|
|
|
/* LCC-Win32 */
|
|
|
|
#define WINGDIAPI __stdcall
|
|
|
|
#else
|
|
|
|
/* Others (e.g. MinGW, Cygwin) */
|
|
|
|
#define WINGDIAPI extern
|
|
|
|
#endif
|
2011-07-27 15:09:17 +00:00
|
|
|
#define GLFW_WINGDIAPI_DEFINED
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif /* WINGDIAPI */
|
|
|
|
|
|
|
|
/* Some <GL/glu.h> files also need CALLBACK defined */
|
|
|
|
#if !defined(CALLBACK) && defined(_WIN32)
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
/* Microsoft Visual C++ */
|
|
|
|
#if (defined(_M_MRX000) || defined(_M_IX86) || defined(_M_ALPHA) || defined(_M_PPC)) && !defined(MIDL_PASS)
|
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#else
|
|
|
|
#define CALLBACK
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
/* Other Windows compilers */
|
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#endif
|
2011-07-27 15:09:17 +00:00
|
|
|
#define GLFW_CALLBACK_DEFINED
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif /* CALLBACK */
|
|
|
|
|
|
|
|
/* Microsoft Visual C++, Borland C++ and Pelles C <GL*glu.h> needs wchar_t */
|
|
|
|
#if defined(_WIN32) && (defined(_MSC_VER) || defined(__BORLANDC__) || defined(__POCC__)) && !defined(_WCHAR_T_DEFINED)
|
|
|
|
typedef unsigned short wchar_t;
|
|
|
|
#define _WCHAR_T_DEFINED
|
|
|
|
#endif /* _WCHAR_T_DEFINED */
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------- GLFW related system specific defines ----------------- */
|
|
|
|
|
|
|
|
#if defined(_WIN32) && defined(GLFW_BUILD_DLL)
|
|
|
|
|
|
|
|
/* We are building a Win32 DLL */
|
2010-11-17 14:42:55 +00:00
|
|
|
#define GLFWAPI __declspec(dllexport)
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
#elif defined(_WIN32) && defined(GLFW_DLL)
|
|
|
|
|
|
|
|
/* We are calling a Win32 DLL */
|
|
|
|
#if defined(__LCC__)
|
2010-11-17 14:42:55 +00:00
|
|
|
#define GLFWAPI extern
|
2010-09-07 15:34:51 +00:00
|
|
|
#else
|
2010-11-17 14:42:55 +00:00
|
|
|
#define GLFWAPI __declspec(dllimport)
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
/* We are either building/calling a static lib or we are non-win32 */
|
|
|
|
#define GLFWAPI
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* -------------------- END SYSTEM/COMPILER SPECIFIC --------------------- */
|
|
|
|
|
2011-07-26 14:52:57 +00:00
|
|
|
/* Include the declaration of the size_t type used below.
|
|
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
/* Include standard OpenGL headers: GLFW uses GL_FALSE/GL_TRUE, and it is
|
|
|
|
* convenient for the user to only have to include <GL/glfw.h>. This also
|
|
|
|
* solves the problem with Windows <GL/gl.h> and <GL/glu.h> needing some
|
|
|
|
* special defines which normally requires the user to include <windows.h>
|
|
|
|
* (which is not a nice solution for portable programs).
|
|
|
|
*/
|
|
|
|
#if defined(__APPLE_CC__)
|
2011-09-16 02:44:40 +00:00
|
|
|
#if defined(GLFW_INCLUDE_GL3)
|
|
|
|
#include <OpenGL/gl3.h>
|
|
|
|
#else
|
|
|
|
#define GL_GLEXT_LEGACY
|
|
|
|
#include <OpenGL/gl.h>
|
|
|
|
#endif
|
|
|
|
#ifndef GLFW_NO_GLU
|
|
|
|
#include <OpenGL/glu.h>
|
|
|
|
#endif
|
2010-09-07 15:34:51 +00:00
|
|
|
#else
|
2011-09-16 02:44:40 +00:00
|
|
|
#if defined(GLFW_INCLUDE_GL3)
|
|
|
|
#include <GL3/gl3.h>
|
|
|
|
#else
|
|
|
|
#include <GL/gl.h>
|
|
|
|
#endif
|
|
|
|
#ifndef GLFW_NO_GLU
|
|
|
|
#include <GL/glu.h>
|
|
|
|
#endif
|
2010-09-07 15:34:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* GLFW version
|
|
|
|
*************************************************************************/
|
|
|
|
|
2010-09-07 15:41:26 +00:00
|
|
|
#define GLFW_VERSION_MAJOR 3
|
|
|
|
#define GLFW_VERSION_MINOR 0
|
2010-09-07 15:34:51 +00:00
|
|
|
#define GLFW_VERSION_REVISION 0
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Input handling definitions
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/* Key and button state/action definitions */
|
|
|
|
#define GLFW_RELEASE 0
|
|
|
|
#define GLFW_PRESS 1
|
|
|
|
|
2011-01-02 10:18:14 +00:00
|
|
|
/* Keyboard raw key codes.
|
|
|
|
* These key codes are inspired by the USB HID Usage Tables v1.12 (p. 53-60),
|
|
|
|
* but re-arranged to map to 7-bit ASCII for printable keys (function keys are
|
|
|
|
* put in the 256+ range).
|
|
|
|
* The naming of the key codes follow these rules:
|
|
|
|
* - The US keyboard layout is used.
|
|
|
|
* - Names of printable alpha-numeric characters are used (e.g. "A", "R",
|
|
|
|
* "3", etc).
|
|
|
|
* - For non-alphanumeric characters, Unicode:ish names are used (e.g.
|
|
|
|
* "COMMA", "LEFT_SQUARE_BRACKET", etc). Note that some names do not
|
|
|
|
* correspond to the Unicode standard (usually for brevity).
|
|
|
|
* - Keys that lack a clear US mapping are named "WORLD_x".
|
|
|
|
* - For non-printable keys, custom names are used (e.g. "F4",
|
|
|
|
* "BACKSPACE", etc).
|
2010-09-07 15:34:51 +00:00
|
|
|
*/
|
2011-01-02 10:18:14 +00:00
|
|
|
|
|
|
|
/* Printable keys */
|
|
|
|
#define GLFW_KEY_SPACE 32
|
|
|
|
#define GLFW_KEY_APOSTROPHE 39 /* ' */
|
|
|
|
#define GLFW_KEY_COMMA 44 /* , */
|
|
|
|
#define GLFW_KEY_MINUS 45 /* - */
|
|
|
|
#define GLFW_KEY_PERIOD 46 /* . */
|
|
|
|
#define GLFW_KEY_SLASH 47 /* / */
|
|
|
|
#define GLFW_KEY_0 48
|
|
|
|
#define GLFW_KEY_1 49
|
|
|
|
#define GLFW_KEY_2 50
|
|
|
|
#define GLFW_KEY_3 51
|
|
|
|
#define GLFW_KEY_4 52
|
|
|
|
#define GLFW_KEY_5 53
|
|
|
|
#define GLFW_KEY_6 54
|
|
|
|
#define GLFW_KEY_7 55
|
|
|
|
#define GLFW_KEY_8 56
|
|
|
|
#define GLFW_KEY_9 57
|
|
|
|
#define GLFW_KEY_SEMICOLON 59 /* ; */
|
|
|
|
#define GLFW_KEY_EQUAL 61 /* = */
|
|
|
|
#define GLFW_KEY_A 65
|
|
|
|
#define GLFW_KEY_B 66
|
|
|
|
#define GLFW_KEY_C 67
|
|
|
|
#define GLFW_KEY_D 68
|
|
|
|
#define GLFW_KEY_E 69
|
|
|
|
#define GLFW_KEY_F 70
|
|
|
|
#define GLFW_KEY_G 71
|
|
|
|
#define GLFW_KEY_H 72
|
|
|
|
#define GLFW_KEY_I 73
|
|
|
|
#define GLFW_KEY_J 74
|
|
|
|
#define GLFW_KEY_K 75
|
|
|
|
#define GLFW_KEY_L 76
|
|
|
|
#define GLFW_KEY_M 77
|
|
|
|
#define GLFW_KEY_N 78
|
|
|
|
#define GLFW_KEY_O 79
|
|
|
|
#define GLFW_KEY_P 80
|
|
|
|
#define GLFW_KEY_Q 81
|
|
|
|
#define GLFW_KEY_R 82
|
|
|
|
#define GLFW_KEY_S 83
|
|
|
|
#define GLFW_KEY_T 84
|
|
|
|
#define GLFW_KEY_U 85
|
|
|
|
#define GLFW_KEY_V 86
|
|
|
|
#define GLFW_KEY_W 87
|
|
|
|
#define GLFW_KEY_X 88
|
|
|
|
#define GLFW_KEY_Y 89
|
|
|
|
#define GLFW_KEY_Z 90
|
2011-01-03 21:07:01 +00:00
|
|
|
#define GLFW_KEY_LEFT_BRACKET 91 /* [ */
|
2011-01-02 10:18:14 +00:00
|
|
|
#define GLFW_KEY_BACKSLASH 92 /* \ */
|
2011-01-03 21:07:01 +00:00
|
|
|
#define GLFW_KEY_RIGHT_BRACKET 93 /* ] */
|
2011-01-02 10:18:14 +00:00
|
|
|
#define GLFW_KEY_GRAVE_ACCENT 96 /* ` */
|
|
|
|
#define GLFW_KEY_WORLD_1 161 /* non-US #1 */
|
|
|
|
#define GLFW_KEY_WORLD_2 162 /* non-US #2 */
|
|
|
|
|
|
|
|
/* Function keys */
|
|
|
|
#define GLFW_KEY_ESCAPE 256
|
|
|
|
#define GLFW_KEY_ENTER 257
|
|
|
|
#define GLFW_KEY_TAB 258
|
|
|
|
#define GLFW_KEY_BACKSPACE 259
|
|
|
|
#define GLFW_KEY_INSERT 260
|
|
|
|
#define GLFW_KEY_DELETE 261
|
|
|
|
#define GLFW_KEY_RIGHT 262
|
|
|
|
#define GLFW_KEY_LEFT 263
|
|
|
|
#define GLFW_KEY_DOWN 264
|
|
|
|
#define GLFW_KEY_UP 265
|
|
|
|
#define GLFW_KEY_PAGE_UP 266
|
|
|
|
#define GLFW_KEY_PAGE_DOWN 267
|
|
|
|
#define GLFW_KEY_HOME 268
|
|
|
|
#define GLFW_KEY_END 269
|
|
|
|
#define GLFW_KEY_CAPS_LOCK 280
|
|
|
|
#define GLFW_KEY_SCROLL_LOCK 281
|
|
|
|
#define GLFW_KEY_NUM_LOCK 282
|
|
|
|
#define GLFW_KEY_PRINT_SCREEN 283
|
|
|
|
#define GLFW_KEY_PAUSE 284
|
|
|
|
#define GLFW_KEY_F1 290
|
|
|
|
#define GLFW_KEY_F2 291
|
|
|
|
#define GLFW_KEY_F3 292
|
|
|
|
#define GLFW_KEY_F4 293
|
|
|
|
#define GLFW_KEY_F5 294
|
|
|
|
#define GLFW_KEY_F6 295
|
|
|
|
#define GLFW_KEY_F7 296
|
|
|
|
#define GLFW_KEY_F8 297
|
|
|
|
#define GLFW_KEY_F9 298
|
|
|
|
#define GLFW_KEY_F10 299
|
|
|
|
#define GLFW_KEY_F11 300
|
|
|
|
#define GLFW_KEY_F12 301
|
|
|
|
#define GLFW_KEY_F13 302
|
|
|
|
#define GLFW_KEY_F14 303
|
|
|
|
#define GLFW_KEY_F15 304
|
|
|
|
#define GLFW_KEY_F16 305
|
|
|
|
#define GLFW_KEY_F17 306
|
|
|
|
#define GLFW_KEY_F18 307
|
|
|
|
#define GLFW_KEY_F19 308
|
|
|
|
#define GLFW_KEY_F20 309
|
|
|
|
#define GLFW_KEY_F21 310
|
|
|
|
#define GLFW_KEY_F22 311
|
|
|
|
#define GLFW_KEY_F23 312
|
|
|
|
#define GLFW_KEY_F24 313
|
|
|
|
#define GLFW_KEY_F25 314
|
|
|
|
#define GLFW_KEY_KP_0 320
|
|
|
|
#define GLFW_KEY_KP_1 321
|
|
|
|
#define GLFW_KEY_KP_2 322
|
|
|
|
#define GLFW_KEY_KP_3 323
|
|
|
|
#define GLFW_KEY_KP_4 324
|
|
|
|
#define GLFW_KEY_KP_5 325
|
|
|
|
#define GLFW_KEY_KP_6 326
|
|
|
|
#define GLFW_KEY_KP_7 327
|
|
|
|
#define GLFW_KEY_KP_8 328
|
|
|
|
#define GLFW_KEY_KP_9 329
|
|
|
|
#define GLFW_KEY_KP_DECIMAL 330
|
|
|
|
#define GLFW_KEY_KP_DIVIDE 331
|
|
|
|
#define GLFW_KEY_KP_MULTIPLY 332
|
|
|
|
#define GLFW_KEY_KP_SUBTRACT 333
|
|
|
|
#define GLFW_KEY_KP_ADD 334
|
|
|
|
#define GLFW_KEY_KP_ENTER 335
|
|
|
|
#define GLFW_KEY_KP_EQUAL 336
|
|
|
|
#define GLFW_KEY_LEFT_SHIFT 340
|
|
|
|
#define GLFW_KEY_LEFT_CONTROL 341
|
|
|
|
#define GLFW_KEY_LEFT_ALT 342
|
|
|
|
#define GLFW_KEY_LEFT_SUPER 343
|
|
|
|
#define GLFW_KEY_RIGHT_SHIFT 344
|
|
|
|
#define GLFW_KEY_RIGHT_CONTROL 345
|
|
|
|
#define GLFW_KEY_RIGHT_ALT 346
|
|
|
|
#define GLFW_KEY_RIGHT_SUPER 347
|
|
|
|
#define GLFW_KEY_MENU 348
|
|
|
|
#define GLFW_KEY_LAST GLFW_KEY_MENU
|
|
|
|
|
|
|
|
/* GLFW 2.x key name aliases (deprecated) */
|
|
|
|
#define GLFW_KEY_ESC GLFW_KEY_ESCAPE
|
|
|
|
#define GLFW_KEY_DEL GLFW_KEY_DELETE
|
|
|
|
#define GLFW_KEY_PAGEUP GLFW_KEY_PAGE_UP
|
|
|
|
#define GLFW_KEY_PAGEDOWN GLFW_KEY_PAGE_DOWN
|
|
|
|
#define GLFW_KEY_KP_NUM_LOCK GLFW_KEY_NUM_LOCK
|
|
|
|
#define GLFW_KEY_LCTRL GLFW_KEY_LEFT_CONTROL
|
|
|
|
#define GLFW_KEY_LSHIFT GLFW_KEY_LEFT_SHIFT
|
|
|
|
#define GLFW_KEY_LALT GLFW_KEY_LEFT_ALT
|
|
|
|
#define GLFW_KEY_LSUPER GLFW_KEY_LEFT_SUPER
|
|
|
|
#define GLFW_KEY_RCTRL GLFW_KEY_RIGHT_CONTROL
|
|
|
|
#define GLFW_KEY_RSHIFT GLFW_KEY_RIGHT_SHIFT
|
|
|
|
#define GLFW_KEY_RALT GLFW_KEY_RIGHT_ALT
|
|
|
|
#define GLFW_KEY_RSUPER GLFW_KEY_RIGHT_SUPER
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
/* Mouse button definitions */
|
|
|
|
#define GLFW_MOUSE_BUTTON_1 0
|
|
|
|
#define GLFW_MOUSE_BUTTON_2 1
|
|
|
|
#define GLFW_MOUSE_BUTTON_3 2
|
|
|
|
#define GLFW_MOUSE_BUTTON_4 3
|
|
|
|
#define GLFW_MOUSE_BUTTON_5 4
|
|
|
|
#define GLFW_MOUSE_BUTTON_6 5
|
|
|
|
#define GLFW_MOUSE_BUTTON_7 6
|
|
|
|
#define GLFW_MOUSE_BUTTON_8 7
|
|
|
|
#define GLFW_MOUSE_BUTTON_LAST GLFW_MOUSE_BUTTON_8
|
|
|
|
|
|
|
|
/* Mouse button aliases */
|
|
|
|
#define GLFW_MOUSE_BUTTON_LEFT GLFW_MOUSE_BUTTON_1
|
|
|
|
#define GLFW_MOUSE_BUTTON_RIGHT GLFW_MOUSE_BUTTON_2
|
|
|
|
#define GLFW_MOUSE_BUTTON_MIDDLE GLFW_MOUSE_BUTTON_3
|
|
|
|
|
|
|
|
/* Joystick identifiers */
|
|
|
|
#define GLFW_JOYSTICK_1 0
|
|
|
|
#define GLFW_JOYSTICK_2 1
|
|
|
|
#define GLFW_JOYSTICK_3 2
|
|
|
|
#define GLFW_JOYSTICK_4 3
|
|
|
|
#define GLFW_JOYSTICK_5 4
|
|
|
|
#define GLFW_JOYSTICK_6 5
|
|
|
|
#define GLFW_JOYSTICK_7 6
|
|
|
|
#define GLFW_JOYSTICK_8 7
|
|
|
|
#define GLFW_JOYSTICK_9 8
|
|
|
|
#define GLFW_JOYSTICK_10 9
|
|
|
|
#define GLFW_JOYSTICK_11 10
|
|
|
|
#define GLFW_JOYSTICK_12 11
|
|
|
|
#define GLFW_JOYSTICK_13 12
|
|
|
|
#define GLFW_JOYSTICK_14 13
|
|
|
|
#define GLFW_JOYSTICK_15 14
|
|
|
|
#define GLFW_JOYSTICK_16 15
|
|
|
|
#define GLFW_JOYSTICK_LAST GLFW_JOYSTICK_16
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Other definitions
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/* glfwOpenWindow modes */
|
2010-09-10 11:24:19 +00:00
|
|
|
#define GLFW_WINDOWED 0x00010001
|
2010-09-07 15:34:51 +00:00
|
|
|
#define GLFW_FULLSCREEN 0x00010002
|
|
|
|
|
|
|
|
/* glfwGetWindowParam tokens */
|
2010-11-15 20:39:46 +00:00
|
|
|
#define GLFW_ACTIVE 0x00020001
|
|
|
|
#define GLFW_ICONIFIED 0x00020002
|
|
|
|
#define GLFW_ACCELERATED 0x00020003
|
2011-08-14 23:40:10 +00:00
|
|
|
#define GLFW_OPENGL_REVISION 0x00020004
|
2010-09-09 17:58:51 +00:00
|
|
|
|
|
|
|
/* The following constants are used for both glfwGetWindowParam
|
|
|
|
* and glfwOpenWindowHint
|
|
|
|
*/
|
2011-08-14 23:40:10 +00:00
|
|
|
#define GLFW_RED_BITS 0x00021000
|
|
|
|
#define GLFW_GREEN_BITS 0x00021001
|
|
|
|
#define GLFW_BLUE_BITS 0x00021002
|
|
|
|
#define GLFW_ALPHA_BITS 0x00021003
|
|
|
|
#define GLFW_DEPTH_BITS 0x00021004
|
|
|
|
#define GLFW_STENCIL_BITS 0x00021005
|
|
|
|
#define GLFW_REFRESH_RATE 0x00021006
|
|
|
|
#define GLFW_ACCUM_RED_BITS 0x00021007
|
|
|
|
#define GLFW_ACCUM_GREEN_BITS 0x00021008
|
|
|
|
#define GLFW_ACCUM_BLUE_BITS 0x00021009
|
|
|
|
#define GLFW_ACCUM_ALPHA_BITS 0x0002100A
|
|
|
|
#define GLFW_AUX_BUFFERS 0x0002100B
|
|
|
|
#define GLFW_STEREO 0x0002100C
|
2011-11-02 15:56:34 +00:00
|
|
|
#define GLFW_WINDOW_RESIZABLE 0x0002100D
|
2011-08-14 23:40:10 +00:00
|
|
|
#define GLFW_FSAA_SAMPLES 0x0002100E
|
|
|
|
#define GLFW_OPENGL_VERSION_MAJOR 0x0002100F
|
|
|
|
#define GLFW_OPENGL_VERSION_MINOR 0x00021010
|
|
|
|
#define GLFW_OPENGL_FORWARD_COMPAT 0x00021011
|
|
|
|
#define GLFW_OPENGL_DEBUG_CONTEXT 0x00021012
|
|
|
|
#define GLFW_OPENGL_PROFILE 0x00021013
|
|
|
|
#define GLFW_OPENGL_ROBUSTNESS 0x00021014
|
2011-03-07 19:51:34 +00:00
|
|
|
|
|
|
|
/* GLFW_OPENGL_ROBUSTNESS mode tokens */
|
|
|
|
#define GLFW_OPENGL_NO_ROBUSTNESS 0x00000000
|
|
|
|
#define GLFW_OPENGL_NO_RESET_NOTIFICATION 0x00000001
|
|
|
|
#define GLFW_OPENGL_LOSE_CONTEXT_ON_RESET 0x00000002
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-11-15 20:40:43 +00:00
|
|
|
/* GLFW_OPENGL_PROFILE bit tokens */
|
2011-09-19 19:00:29 +00:00
|
|
|
#define GLFW_OPENGL_NO_PROFILE 0x00000000
|
2010-11-15 20:40:43 +00:00
|
|
|
#define GLFW_OPENGL_CORE_PROFILE 0x00000001
|
|
|
|
#define GLFW_OPENGL_COMPAT_PROFILE 0x00000002
|
|
|
|
#define GLFW_OPENGL_ES2_PROFILE 0x00000004
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2012-02-03 23:51:35 +00:00
|
|
|
/* glfwGetInputMode/glfwSetInputMode tokens */
|
|
|
|
#define GLFW_CURSOR_MODE 0x00030001
|
2010-09-07 15:34:51 +00:00
|
|
|
#define GLFW_STICKY_KEYS 0x00030002
|
|
|
|
#define GLFW_STICKY_MOUSE_BUTTONS 0x00030003
|
|
|
|
#define GLFW_SYSTEM_KEYS 0x00030004
|
|
|
|
#define GLFW_KEY_REPEAT 0x00030005
|
|
|
|
|
2012-02-03 23:51:35 +00:00
|
|
|
/* GLFW_CURSOR_MODE values */
|
2011-09-06 11:55:29 +00:00
|
|
|
#define GLFW_CURSOR_NORMAL 0x00040001
|
|
|
|
#define GLFW_CURSOR_HIDDEN 0x00040002
|
|
|
|
#define GLFW_CURSOR_CAPTURED 0x00040003
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
/* glfwGetJoystickParam tokens */
|
|
|
|
#define GLFW_PRESENT 0x00050001
|
|
|
|
#define GLFW_AXES 0x00050002
|
|
|
|
#define GLFW_BUTTONS 0x00050003
|
|
|
|
|
2010-09-09 19:08:50 +00:00
|
|
|
/* glfwGetError/glfwErrorString tokens */
|
|
|
|
#define GLFW_NO_ERROR 0
|
|
|
|
#define GLFW_NOT_INITIALIZED 0x00070001
|
2010-10-04 22:08:19 +00:00
|
|
|
#define GLFW_NO_CURRENT_WINDOW 0x00070002
|
|
|
|
#define GLFW_INVALID_ENUM 0x00070003
|
|
|
|
#define GLFW_INVALID_VALUE 0x00070004
|
|
|
|
#define GLFW_OUT_OF_MEMORY 0x00070005
|
|
|
|
#define GLFW_OPENGL_UNAVAILABLE 0x00070006
|
|
|
|
#define GLFW_VERSION_UNAVAILABLE 0x00070007
|
|
|
|
#define GLFW_PLATFORM_ERROR 0x00070008
|
2011-09-06 11:55:29 +00:00
|
|
|
#define GLFW_WINDOW_NOT_ACTIVE 0x00070009
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
/* Gamma ramps */
|
|
|
|
#define GLFW_GAMMA_RAMP_SIZE 256
|
2010-09-09 19:09:11 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* Typedefs
|
|
|
|
*************************************************************************/
|
|
|
|
|
2010-09-16 04:05:50 +00:00
|
|
|
/* Window handle type */
|
2011-02-09 11:37:42 +00:00
|
|
|
typedef void* GLFWwindow;
|
2010-09-09 16:15:32 +00:00
|
|
|
|
2011-03-07 12:34:58 +00:00
|
|
|
/* Function pointer types */
|
|
|
|
typedef void (* GLFWerrorfun)(int,const char*);
|
|
|
|
typedef void (* GLFWwindowsizefun)(GLFWwindow,int,int);
|
|
|
|
typedef int (* GLFWwindowclosefun)(GLFWwindow);
|
|
|
|
typedef void (* GLFWwindowrefreshfun)(GLFWwindow);
|
|
|
|
typedef void (* GLFWwindowfocusfun)(GLFWwindow,int);
|
|
|
|
typedef void (* GLFWwindowiconifyfun)(GLFWwindow,int);
|
|
|
|
typedef void (* GLFWmousebuttonfun)(GLFWwindow,int,int);
|
|
|
|
typedef void (* GLFWmouseposfun)(GLFWwindow,int,int);
|
|
|
|
typedef void (* GLFWscrollfun)(GLFWwindow,int,int);
|
|
|
|
typedef void (* GLFWkeyfun)(GLFWwindow,int,int);
|
|
|
|
typedef void (* GLFWcharfun)(GLFWwindow,int);
|
2011-03-07 13:09:13 +00:00
|
|
|
typedef void* (* GLFWmallocfun)(size_t);
|
|
|
|
typedef void (* GLFWfreefun)(void*);
|
2011-03-07 12:34:58 +00:00
|
|
|
|
2010-09-16 04:05:50 +00:00
|
|
|
/* The video mode structure used by glfwGetVideoModes */
|
2010-09-09 17:44:43 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int redBits;
|
|
|
|
int blueBits;
|
|
|
|
int greenBits;
|
2010-09-07 15:34:51 +00:00
|
|
|
} GLFWvidmode;
|
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
/* Gamma ramp */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned short red[GLFW_GAMMA_RAMP_SIZE];
|
|
|
|
unsigned short green[GLFW_GAMMA_RAMP_SIZE];
|
|
|
|
unsigned short blue[GLFW_GAMMA_RAMP_SIZE];
|
|
|
|
} GLFWgammaramp;
|
|
|
|
|
2011-03-07 13:09:13 +00:00
|
|
|
/* Custom memory allocator interface */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GLFWmallocfun malloc;
|
|
|
|
GLFWfreefun free;
|
|
|
|
} GLFWallocator;
|
|
|
|
|
|
|
|
/* Custom threading model interface */
|
|
|
|
typedef struct
|
|
|
|
{
|
2011-04-06 18:45:33 +00:00
|
|
|
int dummy;
|
2011-03-07 13:09:13 +00:00
|
|
|
} GLFWthreadmodel;
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Prototypes
|
|
|
|
*************************************************************************/
|
|
|
|
|
2010-09-19 22:38:06 +00:00
|
|
|
/* Initialization, termination and version querying */
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI int glfwInit(void);
|
2011-03-07 13:09:13 +00:00
|
|
|
GLFWAPI int glfwInitWithModels(GLFWthreadmodel* threading, GLFWallocator* allocator);
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI void glfwTerminate(void);
|
|
|
|
GLFWAPI void glfwGetVersion(int* major, int* minor, int* rev);
|
2010-09-13 16:05:59 +00:00
|
|
|
GLFWAPI const char* glfwGetVersionString(void);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 19:06:59 +00:00
|
|
|
/* Error handling */
|
|
|
|
GLFWAPI int glfwGetError(void);
|
|
|
|
GLFWAPI const char* glfwErrorString(int error);
|
2010-11-23 16:45:23 +00:00
|
|
|
GLFWAPI void glfwSetErrorCallback(GLFWerrorfun cbfun);
|
2010-09-09 19:06:59 +00:00
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
/* Video mode functions */
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI int glfwGetVideoModes(GLFWvidmode* list, int maxcount);
|
|
|
|
GLFWAPI void glfwGetDesktopMode(GLFWvidmode* mode);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-10-13 02:04:43 +00:00
|
|
|
/* Gamma ramp functions */
|
2011-09-06 13:43:31 +00:00
|
|
|
GLFWAPI void glfwSetGamma(float gamma);
|
2010-10-13 02:04:43 +00:00
|
|
|
GLFWAPI void glfwGetGammaRamp(GLFWgammaramp* ramp);
|
|
|
|
GLFWAPI void glfwSetGammaRamp(const GLFWgammaramp* ramp);
|
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
/* Window handling */
|
2010-10-04 16:17:53 +00:00
|
|
|
GLFWAPI GLFWwindow glfwOpenWindow(int width, int height, int mode, const char* title, GLFWwindow share);
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWAPI void glfwOpenWindowHint(int target, int hint);
|
2010-09-09 16:42:41 +00:00
|
|
|
GLFWAPI int glfwIsWindow(GLFWwindow window);
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWAPI void glfwCloseWindow(GLFWwindow window);
|
|
|
|
GLFWAPI void glfwSetWindowTitle(GLFWwindow, const char* title);
|
|
|
|
GLFWAPI void glfwGetWindowSize(GLFWwindow, int* width, int* height);
|
|
|
|
GLFWAPI void glfwSetWindowSize(GLFWwindow, int width, int height);
|
2011-02-09 11:57:11 +00:00
|
|
|
GLFWAPI void glfwGetWindowPos(GLFWwindow, int* xpos, int* ypos);
|
|
|
|
GLFWAPI void glfwSetWindowPos(GLFWwindow, int xpos, int ypos);
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWAPI void glfwIconifyWindow(GLFWwindow window);
|
|
|
|
GLFWAPI void glfwRestoreWindow(GLFWwindow window);
|
|
|
|
GLFWAPI int glfwGetWindowParam(GLFWwindow window, int param);
|
2010-09-09 20:44:38 +00:00
|
|
|
GLFWAPI void glfwSetWindowUserPointer(GLFWwindow window, void* pointer);
|
|
|
|
GLFWAPI void* glfwGetWindowUserPointer(GLFWwindow window);
|
2010-10-24 16:28:55 +00:00
|
|
|
GLFWAPI void glfwSetWindowSizeCallback(GLFWwindowsizefun cbfun);
|
|
|
|
GLFWAPI void glfwSetWindowCloseCallback(GLFWwindowclosefun cbfun);
|
|
|
|
GLFWAPI void glfwSetWindowRefreshCallback(GLFWwindowrefreshfun cbfun);
|
|
|
|
GLFWAPI void glfwSetWindowFocusCallback(GLFWwindowfocusfun cbfun);
|
|
|
|
GLFWAPI void glfwSetWindowIconifyCallback(GLFWwindowiconifyfun cbfun);
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
/* Event handling */
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI void glfwPollEvents(void);
|
|
|
|
GLFWAPI void glfwWaitEvents(void);
|
2010-09-09 16:15:32 +00:00
|
|
|
|
|
|
|
/* Input handling */
|
2012-02-04 00:34:12 +00:00
|
|
|
GLFWAPI int glfwGetInputMode(GLFWwindow window, int mode);
|
|
|
|
GLFWAPI void glfwSetInputMode(GLFWwindow window, int mode, int value);
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWAPI int glfwGetKey(GLFWwindow window, int key);
|
|
|
|
GLFWAPI int glfwGetMouseButton(GLFWwindow window, int button);
|
|
|
|
GLFWAPI void glfwGetMousePos(GLFWwindow window, int* xpos, int* ypos);
|
|
|
|
GLFWAPI void glfwSetMousePos(GLFWwindow window, int xpos, int ypos);
|
2011-02-09 11:57:11 +00:00
|
|
|
GLFWAPI void glfwGetScrollOffset(GLFWwindow window, int* xoffset, int* yoffset);
|
2010-10-24 16:28:55 +00:00
|
|
|
GLFWAPI void glfwSetKeyCallback(GLFWkeyfun cbfun);
|
|
|
|
GLFWAPI void glfwSetCharCallback(GLFWcharfun cbfun);
|
|
|
|
GLFWAPI void glfwSetMouseButtonCallback(GLFWmousebuttonfun cbfun);
|
|
|
|
GLFWAPI void glfwSetMousePosCallback(GLFWmouseposfun cbfun);
|
|
|
|
GLFWAPI void glfwSetScrollCallback(GLFWscrollfun cbfun);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
/* Joystick input */
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI int glfwGetJoystickParam(int joy, int param);
|
|
|
|
GLFWAPI int glfwGetJoystickPos(int joy, float* pos, int numaxes);
|
|
|
|
GLFWAPI int glfwGetJoystickButtons(int joy, unsigned char* buttons, int numbuttons);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
/* Time */
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI double glfwGetTime(void);
|
|
|
|
GLFWAPI void glfwSetTime(double time);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
2010-09-09 16:15:32 +00:00
|
|
|
/* OpenGL support */
|
2011-07-27 14:01:27 +00:00
|
|
|
GLFWAPI void glfwMakeContextCurrent(GLFWwindow window);
|
|
|
|
GLFWAPI GLFWwindow glfwGetCurrentContext(void);
|
2010-09-09 16:15:32 +00:00
|
|
|
GLFWAPI void glfwSwapBuffers(void);
|
|
|
|
GLFWAPI void glfwSwapInterval(int interval);
|
2010-09-08 14:40:43 +00:00
|
|
|
GLFWAPI int glfwExtensionSupported(const char* extension);
|
|
|
|
GLFWAPI void* glfwGetProcAddress(const char* procname);
|
2011-07-27 14:01:27 +00:00
|
|
|
GLFWAPI void glfwCopyContext(GLFWwindow src, GLFWwindow dst, unsigned long mask);
|
2010-09-07 15:34:51 +00:00
|
|
|
|
|
|
|
|
2011-07-27 15:09:17 +00:00
|
|
|
/*************************************************************************
|
|
|
|
* Global definition cleanup
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/* ------------------- BEGIN SYSTEM/COMPILER SPECIFIC -------------------- */
|
|
|
|
|
|
|
|
#ifdef GLFW_WINGDIAPI_DEFINED
|
|
|
|
#undef WINGDIAPI
|
|
|
|
#undef GLFW_WINGDIAPI_DEFINED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef GLFW_CALLBACK_DEFINED
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef GLFW_CALLBACK_DEFINED
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* -------------------- END SYSTEM/COMPILER SPECIFIC --------------------- */
|
|
|
|
|
|
|
|
|
2010-09-07 15:34:51 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-09 01:58:35 +00:00
|
|
|
#endif /* __glfw3_h__ */
|
2010-09-07 15:34:51 +00:00
|
|
|
|