Lines Matching defs:handle

562 GLFWAPI int glfwGetInputMode(GLFWwindow* handle, int mode)
566 _GLFWwindow* window = (_GLFWwindow*) handle;
589 GLFWAPI void glfwSetInputMode(GLFWwindow* handle, int mode, int value)
593 _GLFWwindow* window = (_GLFWwindow*) handle;
745 GLFWAPI int glfwGetKey(GLFWwindow* handle, int key)
749 _GLFWwindow* window = (_GLFWwindow*) handle;
768 GLFWAPI int glfwGetMouseButton(GLFWwindow* handle, int button)
772 _GLFWwindow* window = (_GLFWwindow*) handle;
791 GLFWAPI void glfwGetCursorPos(GLFWwindow* handle, double* xpos, double* ypos)
800 _GLFWwindow* window = (_GLFWwindow*) handle;
814 GLFWAPI void glfwSetCursorPos(GLFWwindow* handle, double xpos, double ypos)
818 _GLFWwindow* window = (_GLFWwindow*) handle;
908 GLFWAPI void glfwDestroyCursor(GLFWcursor* handle)
912 _GLFWcursor* cursor = (_GLFWcursor*) handle;
956 GLFWAPI GLFWkeyfun glfwSetKeyCallback(GLFWwindow* handle, GLFWkeyfun cbfun)
960 _GLFWwindow* window = (_GLFWwindow*) handle;
967 GLFWAPI GLFWcharfun glfwSetCharCallback(GLFWwindow* handle, GLFWcharfun cbfun)
971 _GLFWwindow* window = (_GLFWwindow*) handle;
978 GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* handle, GLFWcharmodsfun cbfun)
982 _GLFWwindow* window = (_GLFWwindow*) handle;
989 GLFWAPI GLFWmousebuttonfun glfwSetMouseButtonCallback(GLFWwindow* handle,
994 _GLFWwindow* window = (_GLFWwindow*) handle;
1001 GLFWAPI GLFWcursorposfun glfwSetCursorPosCallback(GLFWwindow* handle,
1006 _GLFWwindow* window = (_GLFWwindow*) handle;
1013 GLFWAPI GLFWcursorenterfun glfwSetCursorEnterCallback(GLFWwindow* handle,
1018 _GLFWwindow* window = (_GLFWwindow*) handle;
1025 GLFWAPI GLFWscrollfun glfwSetScrollCallback(GLFWwindow* handle,
1030 _GLFWwindow* window = (_GLFWwindow*) handle;
1037 GLFWAPI GLFWdropfun glfwSetDropCallback(GLFWwindow* handle, GLFWdropfun cbfun)
1041 _GLFWwindow* window = (_GLFWwindow*) handle;
1477 GLFWAPI void glfwSetClipboardString(GLFWwindow* handle, const char* string)
1485 GLFWAPI const char* glfwGetClipboardString(GLFWwindow* handle)