Home
last modified time | relevance | path

Searched refs:glfwCreateStandardCursor (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_glfw.cpp253 bd->MouseCursors[ImGuiMouseCursor_Arrow] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); in ImGui_ImplGlfw_Init()
254 bd->MouseCursors[ImGuiMouseCursor_TextInput] = glfwCreateStandardCursor(GLFW_IBEAM_CURSOR); in ImGui_ImplGlfw_Init()
255 bd->MouseCursors[ImGuiMouseCursor_ResizeNS] = glfwCreateStandardCursor(GLFW_VRESIZE_CURSOR); in ImGui_ImplGlfw_Init()
256 bd->MouseCursors[ImGuiMouseCursor_ResizeEW] = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR); in ImGui_ImplGlfw_Init()
257 bd->MouseCursors[ImGuiMouseCursor_Hand] = glfwCreateStandardCursor(GLFW_HAND_CURSOR); in ImGui_ImplGlfw_Init()
259 bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_RESIZE_ALL_CURSOR); in ImGui_ImplGlfw_Init()
260 … bd->MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_RESIZE_NESW_CURSOR); in ImGui_ImplGlfw_Init()
261 … bd->MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_RESIZE_NWSE_CURSOR); in ImGui_ImplGlfw_Init()
262 … bd->MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_NOT_ALLOWED_CURSOR); in ImGui_ImplGlfw_Init()
264 bd->MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); in ImGui_ImplGlfw_Init()
[all …]
/third_party/glfw/tests/
Dcursor.c226 standard_cursors[i] = glfwCreateStandardCursor(shapes[i]); in main()
/third_party/glfw/docs/
Dinput.dox306 glfwCreateStandardCursor and destroyed with @ref glfwDestroyCursor, or @ref
339 theme can be can be created with @ref glfwCreateStandardCursor.
342 GLFWcursor* cursor = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR);
Dnews.dox106 glfwCreateStandardCursor, set with @ref glfwSetCursor and destroyed with @ref
Dintro.dox198 - @ref glfwCreateStandardCursor
/third_party/glfw/include/GLFW/
Dglfw3.h3213 GLFWAPI GLFWcursor* glfwCreateStandardCursor(int shape);
/third_party/skia/third_party/externals/imgui/examples/libs/glfw/include/GLFW/
Dglfw3.h3198 GLFWAPI GLFWcursor* glfwCreateStandardCursor(int shape);
/third_party/glfw/src/
Dinput.c381 GLFWAPI GLFWcursor* glfwCreateStandardCursor(int shape) in glfwCreateStandardCursor() function