Searched refs:SizeContents (Results 1 - 6 of 6) sorted by relevance
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui.cpp | 2504 SizeContents = SizeContentsExplicit = ImVec2(0.0f, 0.0f); 4561 return window->SizeContents; 4563 return window->SizeContents; 4609 return ImMax(0.0f, window->SizeContents.x - (window->SizeFull.x - window->ScrollbarSizes.x)); 4614 return ImMax(0.0f, window->SizeContents.y - (window->SizeFull.y - window->ScrollbarSizes.y)); 4633 if (snap_on_edges && cr_y >= 1.0f && target_y >= window->SizeContents.y - window->WindowPadding.y + g.Style.ItemSpacing.y) 4634 target_y = window->SizeContents.y; 5006 window->SizeContents = CalcSizeContents(window); 5017 // We reset Size/SizeContents for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size. 5027 window->SizeContents [all...] |
| H A D | imgui_internal.h | 1055 ImVec2 CursorMaxPos; // Used to implicitly calculate the size of our contents, always growing during the frame. Turned into window->SizeContents at the beginning of next frame 1137 ImVec2 SizeContents; // Size of contents (== extents reach of the drawing cursor) from previous frame. Include decoration, window title, border, menu, etc. member in struct:ImGuiWindow
|
| H A D | imgui_widgets.cpp | 771 float win_size_contents_v = horizontal ? window->SizeContents.x : window->SizeContents.y; 815 // It is ok to modify Scroll here because we are being called in Begin() after the calculation of SizeContents and before setting up our starting position
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui.cpp | 2504 SizeContents = SizeContentsExplicit = ImVec2(0.0f, 0.0f); 4561 return window->SizeContents; 4563 return window->SizeContents; 4609 return ImMax(0.0f, window->SizeContents.x - (window->SizeFull.x - window->ScrollbarSizes.x)); 4614 return ImMax(0.0f, window->SizeContents.y - (window->SizeFull.y - window->ScrollbarSizes.y)); 4633 if (snap_on_edges && cr_y >= 1.0f && target_y >= window->SizeContents.y - window->WindowPadding.y + g.Style.ItemSpacing.y) 4634 target_y = window->SizeContents.y; 5006 window->SizeContents = CalcSizeContents(window); 5017 // We reset Size/SizeContents for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size. 5027 window->SizeContents [all...] |
| H A D | imgui_internal.h | 1055 ImVec2 CursorMaxPos; // Used to implicitly calculate the size of our contents, always growing during the frame. Turned into window->SizeContents at the beginning of next frame 1137 ImVec2 SizeContents; // Size of contents (== extents reach of the drawing cursor) from previous frame. Include decoration, window title, border, menu, etc. member in struct:ImGuiWindow
|
| H A D | imgui_widgets.cpp | 771 float win_size_contents_v = horizontal ? window->SizeContents.x : window->SizeContents.y; 815 // It is ok to modify Scroll here because we are being called in Begin() after the calculation of SizeContents and before setting up our starting position
|
Completed in 117 milliseconds