Searched refs:GetContentRegionMax (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui.h | 264 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 D | imgui_widgets.cpp | 4777 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 D | imgui.cpp | 485 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(); 2946 wrap_pos_x = GetContentRegionMax().x + window->Pos.x; 6233 ImVec2 ImGui::GetContentRegionMax() function in class:ImGui 6245 return GetContentRegionMax() - (window->DC.CursorPos - window->Pos);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.h | 264 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 D | imgui_widgets.cpp | 4777 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 D | imgui.cpp | 485 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(); 2946 wrap_pos_x = GetContentRegionMax().x + window->Pos.x; 6233 ImVec2 ImGui::GetContentRegionMax() function in class:ImGui 6245 return GetContentRegionMax() - (window->DC.CursorPos - window->Pos);
|
Completed in 71 milliseconds