• Home
  • Raw
  • Download

Lines Matching refs:GLFWwindow

64         window->callbacks.key((GLFWwindow*) window, key, scancode, action, mods);  in _glfwInputKey()
73 window->callbacks.charmods((GLFWwindow*) window, codepoint, mods); in _glfwInputChar()
78 window->callbacks.character((GLFWwindow*) window, codepoint); in _glfwInputChar()
85 window->callbacks.scroll((GLFWwindow*) window, xoffset, yoffset); in _glfwInputScroll()
100 window->callbacks.mouseButton((GLFWwindow*) window, button, action, mods); in _glfwInputMouseClick()
112 window->callbacks.cursorPos((GLFWwindow*) window, xpos, ypos); in _glfwInputCursorPos()
118 window->callbacks.cursorEnter((GLFWwindow*) window, entered); in _glfwInputCursorEnter()
124 window->callbacks.drop((GLFWwindow*) window, count, paths); in _glfwInputDrop()
150 GLFWAPI int glfwGetInputMode(GLFWwindow* handle, int mode) in glfwGetInputMode()
171 GLFWAPI void glfwSetInputMode(GLFWwindow* handle, int mode, int value) in glfwSetInputMode()
259 GLFWAPI int glfwGetKey(GLFWwindow* handle, int key) in glfwGetKey()
282 GLFWAPI int glfwGetMouseButton(GLFWwindow* handle, int button) in glfwGetMouseButton()
305 GLFWAPI void glfwGetCursorPos(GLFWwindow* handle, double* xpos, double* ypos) in glfwGetCursorPos()
328 GLFWAPI void glfwSetCursorPos(GLFWwindow* handle, double xpos, double ypos) in glfwSetCursorPos()
427 glfwSetCursor((GLFWwindow*) window, NULL); in glfwDestroyCursor()
446 GLFWAPI void glfwSetCursor(GLFWwindow* windowHandle, GLFWcursor* cursorHandle) in glfwSetCursor()
459 GLFWAPI GLFWkeyfun glfwSetKeyCallback(GLFWwindow* handle, GLFWkeyfun cbfun) in glfwSetKeyCallback()
469 GLFWAPI GLFWcharfun glfwSetCharCallback(GLFWwindow* handle, GLFWcharfun cbfun) in glfwSetCharCallback()
479 GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* handle, GLFWcharmodsfun cbfun) in glfwSetCharModsCallback()
489 GLFWAPI GLFWmousebuttonfun glfwSetMouseButtonCallback(GLFWwindow* handle, in glfwSetMouseButtonCallback()
500 GLFWAPI GLFWcursorposfun glfwSetCursorPosCallback(GLFWwindow* handle, in glfwSetCursorPosCallback()
511 GLFWAPI GLFWcursorenterfun glfwSetCursorEnterCallback(GLFWwindow* handle, in glfwSetCursorEnterCallback()
522 GLFWAPI GLFWscrollfun glfwSetScrollCallback(GLFWwindow* handle, in glfwSetScrollCallback()
533 GLFWAPI GLFWdropfun glfwSetDropCallback(GLFWwindow* handle, GLFWdropfun cbfun) in glfwSetDropCallback()
608 GLFWAPI void glfwSetClipboardString(GLFWwindow* handle, const char* string) in glfwSetClipboardString()
618 GLFWAPI const char* glfwGetClipboardString(GLFWwindow* handle) in glfwGetClipboardString()