MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / glfwSetCharCallback

Function glfwSetCharCallback

extern/glfw/src/input.c:862–870  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

860}
861
862GLFWAPI GLFWcharfun glfwSetCharCallback(GLFWwindow* handle, GLFWcharfun cbfun)
863{
864 _GLFWwindow* window = (_GLFWwindow*) handle;
865 assert(window != NULL);
866
867 _GLFW_REQUIRE_INIT_OR_RETURN(NULL);
868 _GLFW_SWAP_POINTERS(window->callbacks.character, cbfun);
869 return cbfun;
870}
871
872GLFWAPI GLFWcharmodsfun glfwSetCharModsCallback(GLFWwindow* handle, GLFWcharmodsfun cbfun)
873{

Callers 5

nk_glfw3_initFunction · 0.85
initMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected