dcv.plot.bindings.glfw

Undocumented in source.

Members

Aliases

GLFWcharfun
alias GLFWcharfun = void function(uint key, GLFWwindow* window)

GLFW API types

GLFWcharmodsfun
alias GLFWcharmodsfun = void function(int mods, uint key, GLFWwindow*)
Undocumented in source.
GLFWcursorposfun
alias GLFWcursorposfun = void function(double ypos, double xpos, GLFWwindow*)
Undocumented in source.
GLFWkeyfun
alias GLFWkeyfun = void function(int mods, int action, int scancode, int key, GLFWwindow* window)
Undocumented in source.
GLFWmousebuttonfun
alias GLFWmousebuttonfun = void function(int mods, int action, int button, GLFWwindow*)
Undocumented in source.
GLFWwindowclosefun
alias GLFWwindowclosefun = void function(GLFWwindow* window)
Undocumented in source.
GLFWwindowposfun
alias GLFWwindowposfun = void function(int ypos, int xpos, GLFWwindow*)
Undocumented in source.
GLFWwindowsizefun
alias GLFWwindowsizefun = void function(int height, int width, GLFWwindow* window)
Undocumented in source.

Functions

glfwCreateWindow
GLFWwindow* glfwCreateWindow(int width, int height, char* title, GLFWmonitor* monitor, GLFWwindow* share)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwDestroyWindow
void glfwDestroyWindow(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwGetFramebufferSize
void glfwGetFramebufferSize(GLFWwindow* window, int* width, int* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwGetInputMode
int glfwGetInputMode(GLFWwindow* window, int mode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwGetWindowAttrib
int glfwGetWindowAttrib(GLFWwindow* window, int attrib)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwGetWindowPos
void glfwGetWindowPos(GLFWwindow* window, int* xpos, int* ypos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwGetWindowSize
void glfwGetWindowSize(GLFWwindow* window, int* width, int* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwHideWindow
void glfwHideWindow(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwInit
int glfwInit()

GLFW functions definitions.

glfwMakeContextCurrent
void glfwMakeContextCurrent(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwPollEvents
void glfwPollEvents()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetCharCallback
GLFWcharfun glfwSetCharCallback(GLFWwindow* window, GLFWcharfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetCharModsCallback
GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* window, GLFWcharmodsfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetCursorPosCallback
GLFWcursorposfun glfwSetCursorPosCallback(GLFWwindow* window, GLFWcursorposfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetInputMode
void glfwSetInputMode(GLFWwindow* window, int mode, int value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetKeyCallback
GLFWkeyfun glfwSetKeyCallback(GLFWwindow* window, GLFWkeyfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetMouseButtonCallback
GLFWmousebuttonfun glfwSetMouseButtonCallback(GLFWwindow* window, GLFWmousebuttonfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowCloseCallback
GLFWwindowclosefun glfwSetWindowCloseCallback(GLFWwindow* window, GLFWwindowclosefun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowPos
void glfwSetWindowPos(GLFWwindow* window, int xpos, int ypos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowPosCallback
GLFWwindowposfun glfwSetWindowPosCallback(GLFWwindow* window, GLFWwindowposfun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowSize
void glfwSetWindowSize(GLFWwindow* window, int width, int height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowSizeCallback
GLFWwindowsizefun glfwSetWindowSizeCallback(GLFWwindow* window, GLFWwindowsizefun cbfun)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSetWindowTitle
void glfwSetWindowTitle(GLFWwindow* window, char* title)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwShowWindow
void glfwShowWindow(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwSwapBuffers
void glfwSwapBuffers(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwTerminate
void glfwTerminate()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwWaitEvents
void glfwWaitEvents()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwWindowHint
void glfwWindowHint(int target, int hint)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
glfwWindowShouldClose
int glfwWindowShouldClose(GLFWwindow* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

GLFWmonitor
struct GLFWmonitor
Undocumented in source.
GLFWwindow
struct GLFWwindow
Undocumented in source.

Variables

GLFW_ACCUM_ALPHA_BITS
auto GLFW_ACCUM_ALPHA_BITS;
Undocumented in source.
GLFW_ACCUM_BLUE_BITS
auto GLFW_ACCUM_BLUE_BITS;
Undocumented in source.
GLFW_ACCUM_GREEN_BITS
auto GLFW_ACCUM_GREEN_BITS;
Undocumented in source.
GLFW_ACCUM_RED_BITS
auto GLFW_ACCUM_RED_BITS;
Undocumented in source.
GLFW_ALPHA_BITS
auto GLFW_ALPHA_BITS;
Undocumented in source.
GLFW_ANY_RELEASE_BEHAVIOR
auto GLFW_ANY_RELEASE_BEHAVIOR;
Undocumented in source.
GLFW_API_UNAVAILABLE
auto GLFW_API_UNAVAILABLE;
Undocumented in source.
GLFW_ARROW_CURSOR
auto GLFW_ARROW_CURSOR;
Undocumented in source.
GLFW_AUTO_ICONIFY
auto GLFW_AUTO_ICONIFY;
Undocumented in source.
GLFW_AUX_BUFFERS
auto GLFW_AUX_BUFFERS;
Undocumented in source.
GLFW_BLUE_BITS
auto GLFW_BLUE_BITS;
Undocumented in source.
GLFW_CLIENT_API
auto GLFW_CLIENT_API;
Undocumented in source.
GLFW_CONNECTED
auto GLFW_CONNECTED;
Undocumented in source.
GLFW_CONTEXT_RELEASE_BEHAVIOR
auto GLFW_CONTEXT_RELEASE_BEHAVIOR;
Undocumented in source.
GLFW_CONTEXT_REVISION
auto GLFW_CONTEXT_REVISION;
Undocumented in source.
GLFW_CONTEXT_ROBUSTNESS
auto GLFW_CONTEXT_ROBUSTNESS;
Undocumented in source.
GLFW_CONTEXT_VERSION_MAJOR
auto GLFW_CONTEXT_VERSION_MAJOR;
Undocumented in source.
GLFW_CONTEXT_VERSION_MINOR
auto GLFW_CONTEXT_VERSION_MINOR;
Undocumented in source.
GLFW_CROSSHAIR_CURSOR
auto GLFW_CROSSHAIR_CURSOR;
Undocumented in source.
GLFW_CURSOR
auto GLFW_CURSOR;
Undocumented in source.
GLFW_CURSOR_DISABLED
auto GLFW_CURSOR_DISABLED;
Undocumented in source.
GLFW_CURSOR_HIDDEN
auto GLFW_CURSOR_HIDDEN;
Undocumented in source.
GLFW_CURSOR_NORMAL
auto GLFW_CURSOR_NORMAL;
Undocumented in source.
GLFW_DECORATED
auto GLFW_DECORATED;
Undocumented in source.
GLFW_DEPTH_BITS
auto GLFW_DEPTH_BITS;
Undocumented in source.
GLFW_DISCONNECTED
auto GLFW_DISCONNECTED;
Undocumented in source.
GLFW_DONT_CARE
auto GLFW_DONT_CARE;
Undocumented in source.
GLFW_DOUBLEBUFFER
auto GLFW_DOUBLEBUFFER;
Undocumented in source.
GLFW_FALSE
auto GLFW_FALSE;
Undocumented in source.
GLFW_FLOATING
auto GLFW_FLOATING;
Undocumented in source.
GLFW_FOCUSED
auto GLFW_FOCUSED;
Undocumented in source.
GLFW_FORMAT_UNAVAILABLE
auto GLFW_FORMAT_UNAVAILABLE;
Undocumented in source.
GLFW_GREEN_BITS
auto GLFW_GREEN_BITS;
Undocumented in source.
GLFW_HAND_CURSOR
auto GLFW_HAND_CURSOR;
Undocumented in source.
GLFW_HRESIZE_CURSOR
auto GLFW_HRESIZE_CURSOR;
Undocumented in source.
GLFW_IBEAM_CURSOR
auto GLFW_IBEAM_CURSOR;
Undocumented in source.
GLFW_ICONIFIED
auto GLFW_ICONIFIED;
Undocumented in source.
GLFW_INVALID_ENUM
auto GLFW_INVALID_ENUM;
Undocumented in source.
GLFW_INVALID_VALUE
auto GLFW_INVALID_VALUE;
Undocumented in source.
GLFW_KEY_0
auto GLFW_KEY_0;
Undocumented in source.
GLFW_KEY_1
auto GLFW_KEY_1;
Undocumented in source.
GLFW_KEY_2
auto GLFW_KEY_2;
Undocumented in source.
GLFW_KEY_3
auto GLFW_KEY_3;
Undocumented in source.
GLFW_KEY_4
auto GLFW_KEY_4;
Undocumented in source.
GLFW_KEY_5
auto GLFW_KEY_5;
Undocumented in source.
GLFW_KEY_6
auto GLFW_KEY_6;
Undocumented in source.
GLFW_KEY_7
auto GLFW_KEY_7;
Undocumented in source.
GLFW_KEY_8
auto GLFW_KEY_8;
Undocumented in source.
GLFW_KEY_9
auto GLFW_KEY_9;
Undocumented in source.
GLFW_KEY_A
auto GLFW_KEY_A;
Undocumented in source.
GLFW_KEY_APOSTROPHE
auto GLFW_KEY_APOSTROPHE;
Undocumented in source.
GLFW_KEY_B
auto GLFW_KEY_B;
Undocumented in source.
GLFW_KEY_BACKSLASH
auto GLFW_KEY_BACKSLASH;
Undocumented in source.
GLFW_KEY_BACKSPACE
auto GLFW_KEY_BACKSPACE;
Undocumented in source.
GLFW_KEY_C
auto GLFW_KEY_C;
Undocumented in source.
GLFW_KEY_CAPS_LOCK
auto GLFW_KEY_CAPS_LOCK;
Undocumented in source.
GLFW_KEY_COMMA
auto GLFW_KEY_COMMA;
Undocumented in source.
GLFW_KEY_D
auto GLFW_KEY_D;
Undocumented in source.
GLFW_KEY_DELETE
auto GLFW_KEY_DELETE;
Undocumented in source.
GLFW_KEY_DOWN
auto GLFW_KEY_DOWN;
Undocumented in source.
GLFW_KEY_E
auto GLFW_KEY_E;
Undocumented in source.
GLFW_KEY_END
auto GLFW_KEY_END;
Undocumented in source.
GLFW_KEY_ENTER
auto GLFW_KEY_ENTER;
Undocumented in source.
GLFW_KEY_EQUAL
auto GLFW_KEY_EQUAL;
Undocumented in source.
GLFW_KEY_ESCAPE
auto GLFW_KEY_ESCAPE;
Undocumented in source.
GLFW_KEY_F
auto GLFW_KEY_F;
Undocumented in source.
GLFW_KEY_F1
auto GLFW_KEY_F1;
Undocumented in source.
GLFW_KEY_F10
auto GLFW_KEY_F10;
Undocumented in source.
GLFW_KEY_F11
auto GLFW_KEY_F11;
Undocumented in source.
GLFW_KEY_F12
auto GLFW_KEY_F12;
Undocumented in source.
GLFW_KEY_F13
auto GLFW_KEY_F13;
Undocumented in source.
GLFW_KEY_F14
auto GLFW_KEY_F14;
Undocumented in source.
GLFW_KEY_F15
auto GLFW_KEY_F15;
Undocumented in source.
GLFW_KEY_F16
auto GLFW_KEY_F16;
Undocumented in source.
GLFW_KEY_F17
auto GLFW_KEY_F17;
Undocumented in source.
GLFW_KEY_F18
auto GLFW_KEY_F18;
Undocumented in source.
GLFW_KEY_F19
auto GLFW_KEY_F19;
Undocumented in source.
GLFW_KEY_F2
auto GLFW_KEY_F2;
Undocumented in source.
GLFW_KEY_F20
auto GLFW_KEY_F20;
Undocumented in source.
GLFW_KEY_F21
auto GLFW_KEY_F21;
Undocumented in source.
GLFW_KEY_F22
auto GLFW_KEY_F22;
Undocumented in source.
GLFW_KEY_F23
auto GLFW_KEY_F23;
Undocumented in source.
GLFW_KEY_F24
auto GLFW_KEY_F24;
Undocumented in source.
GLFW_KEY_F25
auto GLFW_KEY_F25;
Undocumented in source.
GLFW_KEY_F3
auto GLFW_KEY_F3;
Undocumented in source.
GLFW_KEY_F4
auto GLFW_KEY_F4;
Undocumented in source.
GLFW_KEY_F5
auto GLFW_KEY_F5;
Undocumented in source.
GLFW_KEY_F6
auto GLFW_KEY_F6;
Undocumented in source.
GLFW_KEY_F7
auto GLFW_KEY_F7;
Undocumented in source.
GLFW_KEY_F8
auto GLFW_KEY_F8;
Undocumented in source.
GLFW_KEY_F9
auto GLFW_KEY_F9;
Undocumented in source.
GLFW_KEY_G
auto GLFW_KEY_G;
Undocumented in source.
GLFW_KEY_GRAVE_ACCENT
auto GLFW_KEY_GRAVE_ACCENT;
Undocumented in source.
GLFW_KEY_H
auto GLFW_KEY_H;
Undocumented in source.
GLFW_KEY_HOME
auto GLFW_KEY_HOME;
Undocumented in source.
GLFW_KEY_I
auto GLFW_KEY_I;
Undocumented in source.
GLFW_KEY_INSERT
auto GLFW_KEY_INSERT;
Undocumented in source.
GLFW_KEY_J
auto GLFW_KEY_J;
Undocumented in source.
GLFW_KEY_K
auto GLFW_KEY_K;
Undocumented in source.
GLFW_KEY_KP_0
auto GLFW_KEY_KP_0;
Undocumented in source.
GLFW_KEY_KP_1
auto GLFW_KEY_KP_1;
Undocumented in source.
GLFW_KEY_KP_2
auto GLFW_KEY_KP_2;
Undocumented in source.
GLFW_KEY_KP_3
auto GLFW_KEY_KP_3;
Undocumented in source.
GLFW_KEY_KP_4
auto GLFW_KEY_KP_4;
Undocumented in source.
GLFW_KEY_KP_5
auto GLFW_KEY_KP_5;
Undocumented in source.
GLFW_KEY_KP_6
auto GLFW_KEY_KP_6;
Undocumented in source.
GLFW_KEY_KP_7
auto GLFW_KEY_KP_7;
Undocumented in source.
GLFW_KEY_KP_8
auto GLFW_KEY_KP_8;
Undocumented in source.
GLFW_KEY_KP_9
auto GLFW_KEY_KP_9;
Undocumented in source.
GLFW_KEY_KP_ADD
auto GLFW_KEY_KP_ADD;
Undocumented in source.
GLFW_KEY_KP_DECIMAL
auto GLFW_KEY_KP_DECIMAL;
Undocumented in source.
GLFW_KEY_KP_DIVIDE
auto GLFW_KEY_KP_DIVIDE;
Undocumented in source.
GLFW_KEY_KP_ENTER
auto GLFW_KEY_KP_ENTER;
Undocumented in source.
GLFW_KEY_KP_EQUAL
auto GLFW_KEY_KP_EQUAL;
Undocumented in source.
GLFW_KEY_KP_MULTIPLY
auto GLFW_KEY_KP_MULTIPLY;
Undocumented in source.
GLFW_KEY_KP_SUBTRACT
auto GLFW_KEY_KP_SUBTRACT;
Undocumented in source.
GLFW_KEY_L
auto GLFW_KEY_L;
Undocumented in source.
GLFW_KEY_LAST
auto GLFW_KEY_LAST;
Undocumented in source.
GLFW_KEY_LEFT
auto GLFW_KEY_LEFT;
Undocumented in source.
GLFW_KEY_LEFT_ALT
auto GLFW_KEY_LEFT_ALT;
Undocumented in source.
GLFW_KEY_LEFT_BRACKET
auto GLFW_KEY_LEFT_BRACKET;
Undocumented in source.
GLFW_KEY_LEFT_CONTROL
auto GLFW_KEY_LEFT_CONTROL;
Undocumented in source.
GLFW_KEY_LEFT_SHIFT
auto GLFW_KEY_LEFT_SHIFT;
Undocumented in source.
GLFW_KEY_LEFT_SUPER
auto GLFW_KEY_LEFT_SUPER;
Undocumented in source.
GLFW_KEY_M
auto GLFW_KEY_M;
Undocumented in source.
GLFW_KEY_MENU
auto GLFW_KEY_MENU;
Undocumented in source.
GLFW_KEY_MINUS
auto GLFW_KEY_MINUS;
Undocumented in source.
GLFW_KEY_N
auto GLFW_KEY_N;
Undocumented in source.
GLFW_KEY_NUM_LOCK
auto GLFW_KEY_NUM_LOCK;
Undocumented in source.
GLFW_KEY_O
auto GLFW_KEY_O;
Undocumented in source.
GLFW_KEY_P
auto GLFW_KEY_P;
Undocumented in source.
GLFW_KEY_PAGE_DOWN
auto GLFW_KEY_PAGE_DOWN;
Undocumented in source.
GLFW_KEY_PAGE_UP
auto GLFW_KEY_PAGE_UP;
Undocumented in source.
GLFW_KEY_PAUSE
auto GLFW_KEY_PAUSE;
Undocumented in source.
GLFW_KEY_PERIOD
auto GLFW_KEY_PERIOD;
Undocumented in source.
GLFW_KEY_PRINT_SCREEN
auto GLFW_KEY_PRINT_SCREEN;
Undocumented in source.
GLFW_KEY_Q
auto GLFW_KEY_Q;
Undocumented in source.
GLFW_KEY_R
auto GLFW_KEY_R;
Undocumented in source.
GLFW_KEY_RIGHT
auto GLFW_KEY_RIGHT;
Undocumented in source.
GLFW_KEY_RIGHT_ALT
auto GLFW_KEY_RIGHT_ALT;
Undocumented in source.
GLFW_KEY_RIGHT_BRACKET
auto GLFW_KEY_RIGHT_BRACKET;
Undocumented in source.
GLFW_KEY_RIGHT_CONTROL
auto GLFW_KEY_RIGHT_CONTROL;
Undocumented in source.
GLFW_KEY_RIGHT_SHIFT
auto GLFW_KEY_RIGHT_SHIFT;
Undocumented in source.
GLFW_KEY_RIGHT_SUPER
auto GLFW_KEY_RIGHT_SUPER;
Undocumented in source.
GLFW_KEY_S
auto GLFW_KEY_S;
Undocumented in source.
GLFW_KEY_SCROLL_LOCK
auto GLFW_KEY_SCROLL_LOCK;
Undocumented in source.
GLFW_KEY_SEMICOLON
auto GLFW_KEY_SEMICOLON;
Undocumented in source.
GLFW_KEY_SLASH
auto GLFW_KEY_SLASH;
Undocumented in source.
GLFW_KEY_SPACE
auto GLFW_KEY_SPACE;
Undocumented in source.
GLFW_KEY_T
auto GLFW_KEY_T;
Undocumented in source.
GLFW_KEY_TAB
auto GLFW_KEY_TAB;
Undocumented in source.
GLFW_KEY_U
auto GLFW_KEY_U;
Undocumented in source.
GLFW_KEY_UNKNOWN
auto GLFW_KEY_UNKNOWN;
Undocumented in source.
GLFW_KEY_UP
auto GLFW_KEY_UP;
Undocumented in source.
GLFW_KEY_V
auto GLFW_KEY_V;
Undocumented in source.
GLFW_KEY_W
auto GLFW_KEY_W;
Undocumented in source.
GLFW_KEY_WORLD_1
auto GLFW_KEY_WORLD_1;
Undocumented in source.
GLFW_KEY_WORLD_2
auto GLFW_KEY_WORLD_2;
Undocumented in source.
GLFW_KEY_X
auto GLFW_KEY_X;
Undocumented in source.
GLFW_KEY_Y
auto GLFW_KEY_Y;
Undocumented in source.
GLFW_KEY_Z
auto GLFW_KEY_Z;
Undocumented in source.
GLFW_LOSE_CONTEXT_ON_RESET
auto GLFW_LOSE_CONTEXT_ON_RESET;
Undocumented in source.
GLFW_MOD_ALT
auto GLFW_MOD_ALT;
Undocumented in source.
GLFW_MOD_CONTROL
auto GLFW_MOD_CONTROL;
Undocumented in source.
GLFW_MOD_SHIFT
auto GLFW_MOD_SHIFT;
Undocumented in source.
GLFW_MOD_SUPER
auto GLFW_MOD_SUPER;
Undocumented in source.
GLFW_MOUSE_BUTTON_1
auto GLFW_MOUSE_BUTTON_1;
Undocumented in source.
GLFW_MOUSE_BUTTON_2
auto GLFW_MOUSE_BUTTON_2;
Undocumented in source.
GLFW_MOUSE_BUTTON_3
auto GLFW_MOUSE_BUTTON_3;
Undocumented in source.
GLFW_MOUSE_BUTTON_4
auto GLFW_MOUSE_BUTTON_4;
Undocumented in source.
GLFW_MOUSE_BUTTON_5
auto GLFW_MOUSE_BUTTON_5;
Undocumented in source.
GLFW_MOUSE_BUTTON_6
auto GLFW_MOUSE_BUTTON_6;
Undocumented in source.
GLFW_MOUSE_BUTTON_7
auto GLFW_MOUSE_BUTTON_7;
Undocumented in source.
GLFW_MOUSE_BUTTON_8
auto GLFW_MOUSE_BUTTON_8;
Undocumented in source.
GLFW_MOUSE_BUTTON_LAST
auto GLFW_MOUSE_BUTTON_LAST;
Undocumented in source.
GLFW_MOUSE_BUTTON_LEFT
auto GLFW_MOUSE_BUTTON_LEFT;
Undocumented in source.
GLFW_MOUSE_BUTTON_MIDDLE
auto GLFW_MOUSE_BUTTON_MIDDLE;
Undocumented in source.
GLFW_MOUSE_BUTTON_RIGHT
auto GLFW_MOUSE_BUTTON_RIGHT;
Undocumented in source.
GLFW_NOT_INITIALIZED
auto GLFW_NOT_INITIALIZED;
Undocumented in source.
GLFW_NO_CURRENT_CONTEXT
auto GLFW_NO_CURRENT_CONTEXT;
Undocumented in source.
GLFW_NO_RESET_NOTIFICATION
auto GLFW_NO_RESET_NOTIFICATION;
Undocumented in source.
GLFW_NO_ROBUSTNESS
auto GLFW_NO_ROBUSTNESS;
Undocumented in source.
GLFW_OPENGL_ANY_PROFILE
auto GLFW_OPENGL_ANY_PROFILE;
Undocumented in source.
GLFW_OPENGL_API
auto GLFW_OPENGL_API;
Undocumented in source.
GLFW_OPENGL_COMPAT_PROFILE
auto GLFW_OPENGL_COMPAT_PROFILE;
Undocumented in source.
GLFW_OPENGL_CORE_PROFILE
auto GLFW_OPENGL_CORE_PROFILE;
Undocumented in source.
GLFW_OPENGL_DEBUG_CONTEXT
auto GLFW_OPENGL_DEBUG_CONTEXT;
Undocumented in source.
GLFW_OPENGL_ES_API
auto GLFW_OPENGL_ES_API;
Undocumented in source.
GLFW_OPENGL_FORWARD_COMPAT
auto GLFW_OPENGL_FORWARD_COMPAT;
Undocumented in source.
GLFW_OPENGL_PROFILE
auto GLFW_OPENGL_PROFILE;
Undocumented in source.
GLFW_OUT_OF_MEMORY
auto GLFW_OUT_OF_MEMORY;
Undocumented in source.
GLFW_PLATFORM_ERROR
auto GLFW_PLATFORM_ERROR;
Undocumented in source.
GLFW_PRESS
auto GLFW_PRESS;
Undocumented in source.
GLFW_RED_BITS
auto GLFW_RED_BITS;
Undocumented in source.
GLFW_REFRESH_RATE
auto GLFW_REFRESH_RATE;
Undocumented in source.
GLFW_RELEASE
auto GLFW_RELEASE;
Undocumented in source.
GLFW_RELEASE_BEHAVIOR_FLUSH
auto GLFW_RELEASE_BEHAVIOR_FLUSH;
Undocumented in source.
GLFW_RELEASE_BEHAVIOR_NONE
auto GLFW_RELEASE_BEHAVIOR_NONE;
Undocumented in source.
GLFW_REPEAT
auto GLFW_REPEAT;
Undocumented in source.
GLFW_RESIZABLE
auto GLFW_RESIZABLE;
Undocumented in source.
GLFW_SAMPLES
auto GLFW_SAMPLES;
Undocumented in source.
GLFW_SRGB_CAPABLE
auto GLFW_SRGB_CAPABLE;
Undocumented in source.
GLFW_STENCIL_BITS
auto GLFW_STENCIL_BITS;
Undocumented in source.
GLFW_STEREO
auto GLFW_STEREO;
Undocumented in source.
GLFW_STICKY_KEYS
auto GLFW_STICKY_KEYS;
Undocumented in source.
GLFW_STICKY_MOUSE_BUTTONS
auto GLFW_STICKY_MOUSE_BUTTONS;
Undocumented in source.
GLFW_TRUE
auto GLFW_TRUE;

GLFW API tokens

GLFW_VERSION_MAJOR
auto GLFW_VERSION_MAJOR;
Undocumented in source.
GLFW_VERSION_MINOR
auto GLFW_VERSION_MINOR;
Undocumented in source.
GLFW_VERSION_REVISION
auto GLFW_VERSION_REVISION;
Undocumented in source.
GLFW_VERSION_UNAVAILABLE
auto GLFW_VERSION_UNAVAILABLE;
Undocumented in source.
GLFW_VISIBLE
auto GLFW_VISIBLE;
Undocumented in source.
GLFW_VRESIZE_CURSOR
auto GLFW_VRESIZE_CURSOR;
Undocumented in source.

Meta