Searched refs:TreeDepth (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_internal.h1061 int TreeDepth; member in struct:ImGuiWindowTempData
1062 ImU32 TreeDepthMayJumpToParentOnPop; // Store a copy of !g.NavIdIsAlive for TreeDepth 0..31
1101 TreeDepth = 0;
H A Dimgui_widgets.cpp4753 if (g.LogEnabled && !(flags & ImGuiTreeNodeFlags_NoAutoOpenOnLog) && window->DC.TreeDepth < g.LogAutoExpandMaxDepth)
4799 window->DC.TreeDepthMayJumpToParentOnPop |= (1 << window->DC.TreeDepth);
4915 window->DC.TreeDepth++;
4923 window->DC.TreeDepth++;
4931 window->DC.TreeDepth++;
4941 window->DC.TreeDepth--;
4943 if (g.NavIdIsAlive && (window->DC.TreeDepthMayJumpToParentOnPop & (1 << window->DC.TreeDepth)))
4948 window->DC.TreeDepthMayJumpToParentOnPop &= (1 << window->DC.TreeDepth) - 1;
H A Dimgui.cpp5341 window->DC.TreeDepth = 0;
8807 if (g.LogStartDepth > window->DC.TreeDepth) // Re-adjust padding if we have popped out of our starting depth
8808 g.LogStartDepth = window->DC.TreeDepth;
8809 const int tree_depth = (window->DC.TreeDepth - g.LogStartDepth);
8843 g.LogStartDepth = window->DC.TreeDepth;
8871 g.LogStartDepth = window->DC.TreeDepth;
8887 g.LogStartDepth = window->DC.TreeDepth;
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui_internal.h1061 int TreeDepth; member in struct:ImGuiWindowTempData
1062 ImU32 TreeDepthMayJumpToParentOnPop; // Store a copy of !g.NavIdIsAlive for TreeDepth 0..31
1101 TreeDepth = 0;
H A Dimgui_widgets.cpp4753 if (g.LogEnabled && !(flags & ImGuiTreeNodeFlags_NoAutoOpenOnLog) && window->DC.TreeDepth < g.LogAutoExpandMaxDepth)
4799 window->DC.TreeDepthMayJumpToParentOnPop |= (1 << window->DC.TreeDepth);
4915 window->DC.TreeDepth++;
4923 window->DC.TreeDepth++;
4931 window->DC.TreeDepth++;
4941 window->DC.TreeDepth--;
4943 if (g.NavIdIsAlive && (window->DC.TreeDepthMayJumpToParentOnPop & (1 << window->DC.TreeDepth)))
4948 window->DC.TreeDepthMayJumpToParentOnPop &= (1 << window->DC.TreeDepth) - 1;
H A Dimgui.cpp5341 window->DC.TreeDepth = 0;
8807 if (g.LogStartDepth > window->DC.TreeDepth) // Re-adjust padding if we have popped out of our starting depth
8808 g.LogStartDepth = window->DC.TreeDepth;
8809 const int tree_depth = (window->DC.TreeDepth - g.LogStartDepth);
8843 g.LogStartDepth = window->DC.TreeDepth;
8871 g.LogStartDepth = window->DC.TreeDepth;
8887 g.LogStartDepth = window->DC.TreeDepth;

Completed in 81 milliseconds