Searched refs:SetNextWindowPos (Results 1 - 11 of 11) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/vulkan/overlay-layer/
H A Doverlay.cpp675 ImGui::SetNextWindowPos(ImVec2(margin, margin), ImGuiCond_Always);
678 ImGui::SetNextWindowPos(ImVec2(data->width - data->window_size.x - margin, margin),
682 ImGui::SetNextWindowPos(ImVec2(margin, data->height - data->window_size.y - margin),
686 ImGui::SetNextWindowPos(ImVec2(data->width - data->window_size.x - margin,
/xsrc/external/mit/MesaLib/dist/src/vulkan/overlay-layer/
H A Doverlay.cpp907 ImGui::SetNextWindowPos(ImVec2(margin, margin), ImGuiCond_Always);
910 ImGui::SetNextWindowPos(ImVec2(data->width - data->window_size.x - margin, margin),
914 ImGui::SetNextWindowPos(ImVec2(margin, data->height - data->window_size.y - margin),
918 ImGui::SetNextWindowPos(ImVec2(data->width - data->window_size.x - margin,
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp241 ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiCond_FirstUseEver);
1623 // You can also call SetNextWindowPos() to position the child window. The parent window will effectively layout from this position.
3877 ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot);
3914 ImGui::SetNextWindowPos(ImVec2(100, 100), ImGuiCond_FirstUseEver);
3919 ImGui::SetNextWindowPos(ImVec2(100, 200), ImGuiCond_FirstUseEver);
3927 ImGui::SetNextWindowPos(ImVec2(100, 300), ImGuiCond_FirstUseEver);
H A Dimgui.h271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.
278 IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.
1511 static inline void SetNextWindowPosCenter(ImGuiCond c=0) { ImGuiIO& io = GetIO(); SetNextWindowPos(ImVec2(io.DisplaySize.x * 0.5f, io.DisplaySize.y * 0.5f), c, ImVec2(0.5f, 0.5f)); }
H A Dimgui_widgets.cpp1365 SetNextWindowPos(pos);
3959 SetNextWindowPos(window->DC.LastItemRect.GetBL() + ImVec2(-1,style.ItemSpacing.y));
5493 SetNextWindowPos(ImVec2(0.0f, 0.0f));
5718 SetNextWindowPos(popup_pos, ImGuiCond_Always);
H A Dimgui.cpp440 - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete).
537 - 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver)
3963 // with SetWindowPos() and not SetNextWindowPos() will have that rectangle lagging by a frame at the time FindHoveredWindow() is
4356 // Set the cursor to handle case where the user called SetNextWindowPos()+BeginChild() manually.
4487 // Default/arbitrary window position. Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window.
6178 void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) function in class:ImGui
6662 // Whatever we do we want to call SetNextWindowPos() to enforce a tooltip position and disable clipping the tooltip without our display area, like regular tooltip do.
6665 SetNextWindowPos(tooltip_pos);
6952 SetNextWindowPos(g.IO.DisplaySize * 0.5f, ImGuiCond_Appearing, ImVec2(0.5f, 0.5f));
8130 SetNextWindowPos(
[all...]
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h271 IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0,0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc.
278 IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects.
1511 static inline void SetNextWindowPosCenter(ImGuiCond c=0) { ImGuiIO& io = GetIO(); SetNextWindowPos(ImVec2(io.DisplaySize.x * 0.5f, io.DisplaySize.y * 0.5f), c, ImVec2(0.5f, 0.5f)); }
H A Dimgui_widgets.cpp1365 SetNextWindowPos(pos);
3959 SetNextWindowPos(window->DC.LastItemRect.GetBL() + ImVec2(-1,style.ItemSpacing.y));
5493 SetNextWindowPos(ImVec2(0.0f, 0.0f));
5718 SetNextWindowPos(popup_pos, ImGuiCond_Always);
H A Dimgui.cpp440 - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete).
537 - 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver)
3963 // with SetWindowPos() and not SetNextWindowPos() will have that rectangle lagging by a frame at the time FindHoveredWindow() is
4356 // Set the cursor to handle case where the user called SetNextWindowPos()+BeginChild() manually.
4487 // Default/arbitrary window position. Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window.
6178 void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) function in class:ImGui
6662 // Whatever we do we want to call SetNextWindowPos() to enforce a tooltip position and disable clipping the tooltip without our display area, like regular tooltip do.
6665 SetNextWindowPos(tooltip_pos);
6952 SetNextWindowPos(g.IO.DisplaySize * 0.5f, ImGuiCond_Appearing, ImVec2(0.5f, 0.5f));
8130 SetNextWindowPos(
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/tools/
H A Daubinator_viewer.cpp1089 ImGui::SetNextWindowPos(window->position, ImGuiCond_FirstUseEver);
/xsrc/external/mit/MesaLib/dist/src/intel/tools/
H A Daubinator_viewer.cpp1087 ImGui::SetNextWindowPos(window->position, ImGuiCond_FirstUseEver);

Completed in 126 milliseconds