Home
last modified time | relevance | path

Searched refs:GetContentRegionMax (Results 1 - 5 of 5) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui.h264 IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates
265 IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()
339 IMGUI_API float GetCursorPosX(); // (some functions are using window-relative coordinates, such as: GetCursorPos, GetCursorStartPos, GetContentRegionMax, GetWindowContentRegion* etc.
H A Dimgui_widgets.cpp4777 ImRect frame_bb = ImRect(window->DC.CursorPos, ImVec2(window->Pos.x + GetContentRegionMax().x, window->DC.CursorPos.y + frame_height));
5043 float max_x = (flags & ImGuiSelectableFlags_SpanAllColumns) ? GetWindowContentRegionMax().x : GetContentRegionMax().x;
5099 bb.Max.x -= (GetContentRegionMax().x - max_x);
H A Dimgui.cpp485 GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out!
2931 content_max = g.CurrentWindow->Pos + GetContentRegionMax(); in CalcItemSize()
2946 wrap_pos_x = GetContentRegionMax().x + window->Pos.x; in CalcWrapWidthForPos()
6233 ImVec2 ImGui::GetContentRegionMax() in GetContentRegionMax() function in ImGui
6245 return GetContentRegionMax() - (window->DC.CursorPos - window->Pos); in GetContentRegionAvail()
/third_party/skia/third_party/externals/imgui/
H A Dimgui.h384 IMGUI_API ImVec2 GetContentRegionAvail(); // == GetContentRegionMax() - GetCursorPos()
385 IMGUI_API ImVec2 GetContentRegionMax(); // current content boundaries (typically window boundaries including scrolling, or current column boundaries), in windows coordinates
438 // Window-local coordinates: SameLine(), GetCursorPos(), SetCursorPos(), GetCursorStartPos(), GetContentRegionMax(), GetWindowContentRegion*(), PushTextWrapPos()
450 IMGUI_API float GetCursorPosX(); // (some functions are using window-relative coordinates, such as: GetCursorPos, GetCursorStartPos, GetContentRegionMax, GetWindowContentRegion* etc.
H A Dimgui.cpp612 GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out!
7474 // - GetContentRegionMax()
7807 ImVec2 ImGui::GetContentRegionMax() in GetContentRegionMax() function in ImGui

Completed in 70 milliseconds