22IMGUI_IMPL_API
bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,
bool install_callbacks);
23IMGUI_IMPL_API
bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window,
bool install_callbacks);
24IMGUI_IMPL_API
bool ImGui_ImplGlfw_InitForOther(GLFWwindow* window,
bool install_callbacks);
25IMGUI_IMPL_API
void ImGui_ImplGlfw_Shutdown();
26IMGUI_IMPL_API
void ImGui_ImplGlfw_NewFrame();
31IMGUI_IMPL_API
void ImGui_ImplGlfw_InstallCallbacks(GLFWwindow* window);
32IMGUI_IMPL_API
void ImGui_ImplGlfw_RestoreCallbacks(GLFWwindow* window);
35IMGUI_IMPL_API
void ImGui_ImplGlfw_WindowFocusCallback(GLFWwindow* window,
int focused);
36IMGUI_IMPL_API
void ImGui_ImplGlfw_CursorEnterCallback(GLFWwindow* window,
int entered);
37IMGUI_IMPL_API
void ImGui_ImplGlfw_CursorPosCallback(GLFWwindow* window,
double x,
double y);
38IMGUI_IMPL_API
void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window,
int button,
int action,
int mods);
39IMGUI_IMPL_API
void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window,
double xoffset,
double yoffset);
40IMGUI_IMPL_API
void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window,
int key,
int scancode,
int action,
int mods);
41IMGUI_IMPL_API
void ImGui_ImplGlfw_CharCallback(GLFWwindow* window,
unsigned int c);
42IMGUI_IMPL_API
void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor* monitor,
int event);