Searched refs:TreePush (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h482 IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call TreePush/TreePop yourself if desired.
483 IMGUI_API void TreePush(const void* ptr_id = NULL); // "
765 ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack
H A Dimgui_widgets.cpp4619 // - TreePush()
4911 void ImGui::TreePush(const char* str_id) function in class:ImGui
4916 PushID(str_id ? str_id : "#TreePush");
4919 void ImGui::TreePush(const void* ptr_id) function in class:ImGui
4924 PushID(ptr_id ? ptr_id : (const void*)"#TreePush");
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h482 IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushId(). Already called by TreeNode() when returning true, but you can call TreePush/TreePop yourself if desired.
483 IMGUI_API void TreePush(const void* ptr_id = NULL); // "
765 ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack
H A Dimgui_widgets.cpp4619 // - TreePush()
4911 void ImGui::TreePush(const char* str_id) function in class:ImGui
4916 PushID(str_id ? str_id : "#TreePush");
4919 void ImGui::TreePush(const void* ptr_id) function in class:ImGui
4924 PushID(ptr_id ? ptr_id : (const void*)"#TreePush");

Completed in 43 milliseconds