Home
last modified time | relevance | path

Searched refs:PlatformImePos (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_internal.h907 …ImVec2 PlatformImePos; // Cursor position request & last pass… member
1026 PlatformImePos = PlatformImeLastPos = ImVec2(FLT_MAX, FLT_MAX); in ImGuiContext()
Dimgui.cpp3496 …g.PlatformImePos = ImVec2(1.0f, 1.0f); // OS Input Method Editor showing on top-left of our window… in NewFrame()
3769 …PlatformImeLastPos.x == FLT_MAX || ImLengthSqr(g.PlatformImeLastPos - g.PlatformImePos) > 0.0001f)) in EndFrame()
3771 g.IO.ImeSetInputScreenPosFn((int)g.PlatformImePos.x, (int)g.PlatformImePos.y); in EndFrame()
3772 g.PlatformImeLastPos = g.PlatformImePos; in EndFrame()
Dimgui_widgets.cpp3764 g.PlatformImePos = ImVec2(cursor_screen_pos.x - 1, cursor_screen_pos.y - g.FontSize); in InputTextEx()