82 #if !defined(_WIN32) && (defined(__WIN32__) || defined(WIN32) || defined(__CYGWIN__)) 92 #define APIENTRY __stdcall 104 #if !defined(WINGDIAPI) && defined(_WIN32) 105 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__POCC__) 107 #define WINGDIAPI __declspec(dllimport) 108 #elif defined(__LCC__) 110 #define WINGDIAPI __stdcall 113 #define WINGDIAPI extern 115 #define GLFW_WINGDIAPI_DEFINED 119 #if !defined(CALLBACK) && defined(_WIN32) 120 #if defined(_MSC_VER) 122 #if (defined(_M_MRX000) || defined(_M_IX86) || defined(_M_ALPHA) || defined(_M_PPC)) && !defined(MIDL_PASS) 123 #define CALLBACK __stdcall 129 #define CALLBACK __stdcall 131 #define GLFW_CALLBACK_DEFINED 136 #if !defined(GLFW_INCLUDE_NONE) 142 #if defined(__APPLE_CC__) 143 #if defined(GLFW_INCLUDE_GLCOREARB) 144 #include <OpenGL/gl3.h> 145 #elif !defined(GLFW_INCLUDE_NONE) 146 #define GL_GLEXT_LEGACY 147 #include <OpenGL/gl.h> 149 #if defined(GLFW_INCLUDE_GLU) 150 #include <OpenGL/glu.h> 153 #if defined(GLFW_INCLUDE_GLCOREARB) 154 #include <GL/glcorearb.h> 155 #elif defined(GLFW_INCLUDE_ES1) 157 #elif defined(GLFW_INCLUDE_ES2) 158 #include <GLES2/gl2.h> 159 #elif defined(GLFW_INCLUDE_ES3) 160 #include <GLES3/gl3.h> 161 #elif !defined(GLFW_INCLUDE_NONE) 164 #if defined(GLFW_INCLUDE_GLU) 169 #if defined(GLFW_DLL) && defined(_GLFW_BUILD_DLL) 174 #error "You must not have both GLFW_DLL and _GLFW_BUILD_DLL defined" 177 #if defined(_WIN32) && defined(_GLFW_BUILD_DLL) 180 #define GLFWAPI __declspec(dllexport) 182 #elif defined(_WIN32) && defined(GLFW_DLL) 186 #define GLFWAPI extern 188 #define GLFWAPI __declspec(dllimport) 191 #elif defined(__GNUC__) && defined(_GLFW_BUILD_DLL) 193 #define GLFWAPI __attribute__((visibility("default"))) 216 #define GLFW_VERSION_MAJOR 3 223 #define GLFW_VERSION_MINOR 0 230 #define GLFW_VERSION_REVISION 4 238 #define GLFW_RELEASE 0 246 #define GLFW_REPEAT 2 271 #define GLFW_KEY_UNKNOWN -1 274 #define GLFW_KEY_SPACE 32 275 #define GLFW_KEY_APOSTROPHE 39 276 #define GLFW_KEY_COMMA 44 277 #define GLFW_KEY_MINUS 45 278 #define GLFW_KEY_PERIOD 46 279 #define GLFW_KEY_SLASH 47 280 #define GLFW_KEY_0 48 281 #define GLFW_KEY_1 49 282 #define GLFW_KEY_2 50 283 #define GLFW_KEY_3 51 284 #define GLFW_KEY_4 52 285 #define GLFW_KEY_5 53 286 #define GLFW_KEY_6 54 287 #define GLFW_KEY_7 55 288 #define GLFW_KEY_8 56 289 #define GLFW_KEY_9 57 290 #define GLFW_KEY_SEMICOLON 59 291 #define GLFW_KEY_EQUAL 61 292 #define GLFW_KEY_A 65 293 #define GLFW_KEY_B 66 294 #define GLFW_KEY_C 67 295 #define GLFW_KEY_D 68 296 #define GLFW_KEY_E 69 297 #define GLFW_KEY_F 70 298 #define GLFW_KEY_G 71 299 #define GLFW_KEY_H 72 300 #define GLFW_KEY_I 73 301 #define GLFW_KEY_J 74 302 #define GLFW_KEY_K 75 303 #define GLFW_KEY_L 76 304 #define GLFW_KEY_M 77 305 #define GLFW_KEY_N 78 306 #define GLFW_KEY_O 79 307 #define GLFW_KEY_P 80 308 #define GLFW_KEY_Q 81 309 #define GLFW_KEY_R 82 310 #define GLFW_KEY_S 83 311 #define GLFW_KEY_T 84 312 #define GLFW_KEY_U 85 313 #define GLFW_KEY_V 86 314 #define GLFW_KEY_W 87 315 #define GLFW_KEY_X 88 316 #define GLFW_KEY_Y 89 317 #define GLFW_KEY_Z 90 318 #define GLFW_KEY_LEFT_BRACKET 91 319 #define GLFW_KEY_BACKSLASH 92 320 #define GLFW_KEY_RIGHT_BRACKET 93 321 #define GLFW_KEY_GRAVE_ACCENT 96 322 #define GLFW_KEY_WORLD_1 161 323 #define GLFW_KEY_WORLD_2 162 326 #define GLFW_KEY_ESCAPE 256 327 #define GLFW_KEY_ENTER 257 328 #define GLFW_KEY_TAB 258 329 #define GLFW_KEY_BACKSPACE 259 330 #define GLFW_KEY_INSERT 260 331 #define GLFW_KEY_DELETE 261 332 #define GLFW_KEY_RIGHT 262 333 #define GLFW_KEY_LEFT 263 334 #define GLFW_KEY_DOWN 264 335 #define GLFW_KEY_UP 265 336 #define GLFW_KEY_PAGE_UP 266 337 #define GLFW_KEY_PAGE_DOWN 267 338 #define GLFW_KEY_HOME 268 339 #define GLFW_KEY_END 269 340 #define GLFW_KEY_CAPS_LOCK 280 341 #define GLFW_KEY_SCROLL_LOCK 281 342 #define GLFW_KEY_NUM_LOCK 282 343 #define GLFW_KEY_PRINT_SCREEN 283 344 #define GLFW_KEY_PAUSE 284 345 #define GLFW_KEY_F1 290 346 #define GLFW_KEY_F2 291 347 #define GLFW_KEY_F3 292 348 #define GLFW_KEY_F4 293 349 #define GLFW_KEY_F5 294 350 #define GLFW_KEY_F6 295 351 #define GLFW_KEY_F7 296 352 #define GLFW_KEY_F8 297 353 #define GLFW_KEY_F9 298 354 #define GLFW_KEY_F10 299 355 #define GLFW_KEY_F11 300 356 #define GLFW_KEY_F12 301 357 #define GLFW_KEY_F13 302 358 #define GLFW_KEY_F14 303 359 #define GLFW_KEY_F15 304 360 #define GLFW_KEY_F16 305 361 #define GLFW_KEY_F17 306 362 #define GLFW_KEY_F18 307 363 #define GLFW_KEY_F19 308 364 #define GLFW_KEY_F20 309 365 #define GLFW_KEY_F21 310 366 #define GLFW_KEY_F22 311 367 #define GLFW_KEY_F23 312 368 #define GLFW_KEY_F24 313 369 #define GLFW_KEY_F25 314 370 #define GLFW_KEY_KP_0 320 371 #define GLFW_KEY_KP_1 321 372 #define GLFW_KEY_KP_2 322 373 #define GLFW_KEY_KP_3 323 374 #define GLFW_KEY_KP_4 324 375 #define GLFW_KEY_KP_5 325 376 #define GLFW_KEY_KP_6 326 377 #define GLFW_KEY_KP_7 327 378 #define GLFW_KEY_KP_8 328 379 #define GLFW_KEY_KP_9 329 380 #define GLFW_KEY_KP_DECIMAL 330 381 #define GLFW_KEY_KP_DIVIDE 331 382 #define GLFW_KEY_KP_MULTIPLY 332 383 #define GLFW_KEY_KP_SUBTRACT 333 384 #define GLFW_KEY_KP_ADD 334 385 #define GLFW_KEY_KP_ENTER 335 386 #define GLFW_KEY_KP_EQUAL 336 387 #define GLFW_KEY_LEFT_SHIFT 340 388 #define GLFW_KEY_LEFT_CONTROL 341 389 #define GLFW_KEY_LEFT_ALT 342 390 #define GLFW_KEY_LEFT_SUPER 343 391 #define GLFW_KEY_RIGHT_SHIFT 344 392 #define GLFW_KEY_RIGHT_CONTROL 345 393 #define GLFW_KEY_RIGHT_ALT 346 394 #define GLFW_KEY_RIGHT_SUPER 347 395 #define GLFW_KEY_MENU 348 396 #define GLFW_KEY_LAST GLFW_KEY_MENU 406 #define GLFW_MOD_SHIFT 0x0001 409 #define GLFW_MOD_CONTROL 0x0002 412 #define GLFW_MOD_ALT 0x0004 415 #define GLFW_MOD_SUPER 0x0008 422 #define GLFW_MOUSE_BUTTON_1 0 423 #define GLFW_MOUSE_BUTTON_2 1 424 #define GLFW_MOUSE_BUTTON_3 2 425 #define GLFW_MOUSE_BUTTON_4 3 426 #define GLFW_MOUSE_BUTTON_5 4 427 #define GLFW_MOUSE_BUTTON_6 5 428 #define GLFW_MOUSE_BUTTON_7 6 429 #define GLFW_MOUSE_BUTTON_8 7 430 #define GLFW_MOUSE_BUTTON_LAST GLFW_MOUSE_BUTTON_8 431 #define GLFW_MOUSE_BUTTON_LEFT GLFW_MOUSE_BUTTON_1 432 #define GLFW_MOUSE_BUTTON_RIGHT GLFW_MOUSE_BUTTON_2 433 #define GLFW_MOUSE_BUTTON_MIDDLE GLFW_MOUSE_BUTTON_3 439 #define GLFW_JOYSTICK_1 0 440 #define GLFW_JOYSTICK_2 1 441 #define GLFW_JOYSTICK_3 2 442 #define GLFW_JOYSTICK_4 3 443 #define GLFW_JOYSTICK_5 4 444 #define GLFW_JOYSTICK_6 5 445 #define GLFW_JOYSTICK_7 6 446 #define GLFW_JOYSTICK_8 7 447 #define GLFW_JOYSTICK_9 8 448 #define GLFW_JOYSTICK_10 9 449 #define GLFW_JOYSTICK_11 10 450 #define GLFW_JOYSTICK_12 11 451 #define GLFW_JOYSTICK_13 12 452 #define GLFW_JOYSTICK_14 13 453 #define GLFW_JOYSTICK_15 14 454 #define GLFW_JOYSTICK_16 15 455 #define GLFW_JOYSTICK_LAST GLFW_JOYSTICK_16 463 #define GLFW_NOT_INITIALIZED 0x00010001 466 #define GLFW_NO_CURRENT_CONTEXT 0x00010002 470 #define GLFW_INVALID_ENUM 0x00010003 473 #define GLFW_INVALID_VALUE 0x00010004 476 #define GLFW_OUT_OF_MEMORY 0x00010005 480 #define GLFW_API_UNAVAILABLE 0x00010006 483 #define GLFW_VERSION_UNAVAILABLE 0x00010007 487 #define GLFW_PLATFORM_ERROR 0x00010008 490 #define GLFW_FORMAT_UNAVAILABLE 0x00010009 493 #define GLFW_FOCUSED 0x00020001 494 #define GLFW_ICONIFIED 0x00020002 495 #define GLFW_RESIZABLE 0x00020003 496 #define GLFW_VISIBLE 0x00020004 497 #define GLFW_DECORATED 0x00020005 499 #define GLFW_RED_BITS 0x00021001 500 #define GLFW_GREEN_BITS 0x00021002 501 #define GLFW_BLUE_BITS 0x00021003 502 #define GLFW_ALPHA_BITS 0x00021004 503 #define GLFW_DEPTH_BITS 0x00021005 504 #define GLFW_STENCIL_BITS 0x00021006 505 #define GLFW_ACCUM_RED_BITS 0x00021007 506 #define GLFW_ACCUM_GREEN_BITS 0x00021008 507 #define GLFW_ACCUM_BLUE_BITS 0x00021009 508 #define GLFW_ACCUM_ALPHA_BITS 0x0002100A 509 #define GLFW_AUX_BUFFERS 0x0002100B 510 #define GLFW_STEREO 0x0002100C 511 #define GLFW_SAMPLES 0x0002100D 512 #define GLFW_SRGB_CAPABLE 0x0002100E 513 #define GLFW_REFRESH_RATE 0x0002100F 515 #define GLFW_CLIENT_API 0x00022001 516 #define GLFW_CONTEXT_VERSION_MAJOR 0x00022002 517 #define GLFW_CONTEXT_VERSION_MINOR 0x00022003 518 #define GLFW_CONTEXT_REVISION 0x00022004 519 #define GLFW_CONTEXT_ROBUSTNESS 0x00022005 520 #define GLFW_OPENGL_FORWARD_COMPAT 0x00022006 521 #define GLFW_OPENGL_DEBUG_CONTEXT 0x00022007 522 #define GLFW_OPENGL_PROFILE 0x00022008 524 #define GLFW_OPENGL_API 0x00030001 525 #define GLFW_OPENGL_ES_API 0x00030002 527 #define GLFW_NO_ROBUSTNESS 0 528 #define GLFW_NO_RESET_NOTIFICATION 0x00031001 529 #define GLFW_LOSE_CONTEXT_ON_RESET 0x00031002 531 #define GLFW_OPENGL_ANY_PROFILE 0 532 #define GLFW_OPENGL_CORE_PROFILE 0x00032001 533 #define GLFW_OPENGL_COMPAT_PROFILE 0x00032002 535 #define GLFW_CURSOR 0x00033001 536 #define GLFW_STICKY_KEYS 0x00033002 537 #define GLFW_STICKY_MOUSE_BUTTONS 0x00033003 539 #define GLFW_CURSOR_NORMAL 0x00034001 540 #define GLFW_CURSOR_HIDDEN 0x00034002 541 #define GLFW_CURSOR_DISABLED 0x00034003 543 #define GLFW_CONNECTED 0x00040001 544 #define GLFW_DISCONNECTED 0x00040002 2294 #ifdef GLFW_WINGDIAPI_DEFINED 2296 #undef GLFW_WINGDIAPI_DEFINED 2299 #ifdef GLFW_CALLBACK_DEFINED 2301 #undef GLFW_CALLBACK_DEFINED void glfwGetVersion(int *major, int *minor, int *rev)
Retrieves the version of the GLFW library.
int redBits
Definition: glfw3.h:805
void glfwGetWindowSize(GLFWwindow *window, int *width, int *height)
Retrieves the size of the client area of the specified window.
void(* GLFWwindowiconifyfun)(GLFWwindow *, int)
The function signature for window iconify/restore callbacks.
Definition: glfw3.h:670
int height
Definition: glfw3.h:802
GLFWwindowrefreshfun glfwSetWindowRefreshCallback(GLFWwindow *window, GLFWwindowrefreshfun cbfun)
Sets the refresh callback for the specified window.
GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow *window, GLFWwindowposfun cbfun)
Sets the position callback for the specified window.
void glfwGetWindowPos(GLFWwindow *window, int *xpos, int *ypos)
Retrieves the position of the client area of the specified window.
int blueBits
Definition: glfw3.h:811
void(* GLFWmonitorfun)(GLFWmonitor *, int)
The function signature for monitor configuration callbacks.
Definition: glfw3.h:787
void * glfwGetWindowUserPointer(GLFWwindow *window)
Returns the user pointer of the specified window.
const GLFWvidmode * glfwGetVideoModes(GLFWmonitor *monitor, int *count)
Returns the available video modes for the specified monitor.
const GLFWgammaramp * glfwGetGammaRamp(GLFWmonitor *monitor)
Retrieves the current gamma ramp for the specified monitor.
void glfwIconifyWindow(GLFWwindow *window)
Iconifies the specified window.
GLFWwindowiconifyfun glfwSetWindowIconifyCallback(GLFWwindow *window, GLFWwindowiconifyfun cbfun)
Sets the iconify callback for the specified window.
int width
Definition: glfw3.h:799
const char * glfwGetVersionString(void)
Returns a string describing the compile-time configuration.
void glfwSwapBuffers(GLFWwindow *window)
Swaps the front and back buffers of the specified window.
GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow *window, GLFWwindowsizefun cbfun)
Sets the size callback for the specified window.
void glfwWaitEvents(void)
Waits until events are pending and processes them.
GLFWglproc glfwGetProcAddress(const char *procname)
Returns the address of the specified function for the current context.
int refreshRate
Definition: glfw3.h:814
unsigned short * red
Definition: glfw3.h:829
GLFWmonitor ** glfwGetMonitors(int *count)
Returns the currently connected monitors.
void glfwDestroyWindow(GLFWwindow *window)
Destroys the specified window and its context.
unsigned short * green
Definition: glfw3.h:832
void glfwSetWindowTitle(GLFWwindow *window, const char *title)
Sets the title of the specified window.
struct GLFWmonitor GLFWmonitor
Opaque monitor object.
Definition: glfw3.h:566
struct GLFWwindow GLFWwindow
Opaque window object.
Definition: glfw3.h:574
void glfwShowWindow(GLFWwindow *window)
Makes the specified window visible.
void glfwSetWindowSize(GLFWwindow *window, int width, int height)
Sets the size of the client area of the specified window.
int greenBits
Definition: glfw3.h:808
void glfwSetGamma(GLFWmonitor *monitor, float gamma)
Generates a gamma ramp and sets it for the specified monitor.
const GLFWvidmode * glfwGetVideoMode(GLFWmonitor *monitor)
Returns the current mode of the specified monitor.
void glfwRestoreWindow(GLFWwindow *window)
Restores the specified window.
void(* GLFWwindowsizefun)(GLFWwindow *, int, int)
The function signature for window resize callbacks.
Definition: glfw3.h:617
struct GLFWgammaramp GLFWgammaramp
Gamma ramp.
double glfwGetTime(void)
Returns the value of the GLFW timer.
GLFWwindow * glfwCreateWindow(int width, int height, const char *title, GLFWmonitor *monitor, GLFWwindow *share)
Creates a window and its associated context.
unsigned int size
Definition: glfw3.h:838
void glfwSetWindowUserPointer(GLFWwindow *window, void *pointer)
Sets the user pointer of the specified window.
void glfwSetTime(double time)
Sets the GLFW timer.
void glfwSetWindowShouldClose(GLFWwindow *window, int value)
Sets the close flag of the specified window.
void glfwSetClipboardString(GLFWwindow *window, const char *string)
Sets the clipboard to the specified string.
GLFWframebuffersizefun glfwSetFramebufferSizeCallback(GLFWwindow *window, GLFWframebuffersizefun cbfun)
Sets the framebuffer resize callback for the specified window.
void(* GLFWframebuffersizefun)(GLFWwindow *, int, int)
The function signature for framebuffer resize callbacks.
Definition: glfw3.h:685
void(* GLFWerrorfun)(int, const char *)
The function signature for error callbacks.
Definition: glfw3.h:587
void glfwWindowHint(int target, int hint)
Sets the specified window hint to the desired value.
void(* GLFWwindowposfun)(GLFWwindow *, int, int)
The function signature for window position callbacks.
Definition: glfw3.h:603
void glfwPollEvents(void)
Processes all pending events.
const char * glfwGetClipboardString(GLFWwindow *window)
Retrieves the contents of the clipboard as a string.
void glfwHideWindow(GLFWwindow *window)
Hides the specified window.
GLFWwindow * glfwGetCurrentContext(void)
Returns the window whose context is current on the calling thread.
void glfwSetGammaRamp(GLFWmonitor *monitor, const GLFWgammaramp *ramp)
Sets the current gamma ramp for the specified monitor.
GLFWmonitor * glfwGetWindowMonitor(GLFWwindow *window)
Returns the monitor that the window uses for full screen mode.
GLFWmonitor * glfwGetPrimaryMonitor(void)
Returns the primary monitor.
void glfwMakeContextCurrent(GLFWwindow *window)
Makes the context of the specified window current for the calling thread.
Gamma ramp.
Definition: glfw3.h:825
GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow *window, GLFWwindowclosefun cbfun)
Sets the close callback for the specified window.
unsigned short * blue
Definition: glfw3.h:835
Video mode type.
Definition: glfw3.h:795
GLFWerrorfun glfwSetErrorCallback(GLFWerrorfun cbfun)
Sets the error callback.
void glfwSetWindowPos(GLFWwindow *window, int xpos, int ypos)
Sets the position of the client area of the specified window.
int glfwExtensionSupported(const char *extension)
Returns whether the specified extension is available.
void glfwGetFramebufferSize(GLFWwindow *window, int *width, int *height)
Retrieves the size of the framebuffer of the specified window.
void(* GLFWwindowclosefun)(GLFWwindow *)
The function signature for window close callbacks.
Definition: glfw3.h:629
void glfwSwapInterval(int interval)
Sets the swap interval for the current context.
int glfwInit(void)
Initializes the GLFW library.
void glfwGetMonitorPos(GLFWmonitor *monitor, int *xpos, int *ypos)
Returns the position of the monitor's viewport on the virtual screen.
struct GLFWvidmode GLFWvidmode
Video mode type.
void glfwDefaultWindowHints(void)
Resets all window hints to their default values.
GLFWwindowfocusfun glfwSetWindowFocusCallback(GLFWwindow *window, GLFWwindowfocusfun cbfun)
Sets the focus callback for the specified window.
void glfwTerminate(void)
Terminates the GLFW library.
void glfwGetMonitorPhysicalSize(GLFWmonitor *monitor, int *width, int *height)
Returns the physical size of the monitor.
GLFWmonitorfun glfwSetMonitorCallback(GLFWmonitorfun cbfun)
Sets the monitor configuration callback.
void(* GLFWwindowrefreshfun)(GLFWwindow *)
The function signature for window content refresh callbacks.
Definition: glfw3.h:641
void(* GLFWglproc)(void)
Client API function pointer type.
Definition: glfw3.h:558
const char * glfwGetMonitorName(GLFWmonitor *monitor)
Returns the name of the specified monitor.
int glfwWindowShouldClose(GLFWwindow *window)
Checks the close flag of the specified window.
int glfwGetWindowAttrib(GLFWwindow *window, int attrib)
Returns an attribute of the specified window.
void(* GLFWwindowfocusfun)(GLFWwindow *, int)
The function signature for window focus/defocus callbacks.
Definition: glfw3.h:655