Home
last modified time | relevance | path

Searched refs:GetMouseCursor (Results 1 - 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_win32.cpp59 // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value and WM_SETCURSOR message handling).
115 io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) in ImGui_ImplWin32_Init()
196 ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); in ImGui_ImplWin32_UpdateMouseCursor()
328 ImGuiMouseCursor mouse_cursor = io.MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor(); in ImGui_ImplWin32_NewFrame()
H A Dimgui_impl_allegro5.cpp287 io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) in ImGui_ImplAllegro5_Init()
425 ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); in ImGui_ImplAllegro5_UpdateMouseCursor()
H A Dimgui_impl_glfw.cpp34 // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value, passed to glfwSetCursor()).
211 io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) in ImGui_ImplGlfw_Init()
377 ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); in ImGui_ImplGlfw_UpdateMouseCursor()
H A Dimgui_impl_sdl.cpp42 // 2018-02-16: Inputs: Added support for mouse cursors, honoring ImGui::GetMouseCursor() value.
188 io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) in ImGui_ImplSDL2_Init()
366 ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); in ImGui_ImplSDL2_UpdateMouseCursor()
/third_party/mesa3d/src/imgui/
H A Dimgui.h660 IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you
978 ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, // Instruct back-end to not alter mouse cursor shape and visibility. Use if the back-end cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead.
990 ImGuiBackendFlags_HasMouseCursors = 1 << 1, // Back-end supports honoring GetMouseCursor() value to change the OS cursor shape.
1128 // Enumeration for GetMouseCursor()
H A Dimgui.cpp4186 ImGuiMouseCursor ImGui::GetMouseCursor() in GetMouseCursor() function in ImGui
/third_party/skia/third_party/externals/imgui/
H A Dimgui.h911 IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired cursor type, reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you
1434 ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, // Instruct backend to not alter mouse cursor shape and visibility. Use if the backend cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead.
1446 ImGuiBackendFlags_HasMouseCursors = 1 << 1, // Backend Platform supports honoring GetMouseCursor() value to change the OS cursor shape.
1634 // Enumeration for GetMouseCursor()
H A Dimgui_demo.cpp5641 ImGuiMouseCursor current = ImGui::GetMouseCursor();
5645 "Your application can render a different mouse cursor based on what ImGui::GetMouseCursor() returns. "
H A Dimgui.cpp4850 ImGuiMouseCursor ImGui::GetMouseCursor() in GetMouseCursor() function in ImGui

Completed in 74 milliseconds