Searched refs:p_open (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui.h | 216 …IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create demo/test window (pr… 217 …IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create about window. displa… 218 …IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create metrics window. disp… 240 … IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); 489 …IMGUI_API bool CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags… 547 …IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags fl… 569 …IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags fla… 1508 …IMGUI_API bool Begin(const char* name, bool* p_open, const ImVec2& size_on_first_use, float b…
|
D | imgui_widgets.cpp | 4987 bool ImGui::CollapsingHeader(const char* label, bool* p_open, ImGuiTreeNodeFlags flags) in CollapsingHeader() argument 4993 if (p_open && !*p_open) in CollapsingHeader() 4997 …bool is_open = TreeNodeBehavior(id, flags | ImGuiTreeNodeFlags_CollapsingHeader | (p_open ? ImGuiT… in CollapsingHeader() 4998 if (p_open) in CollapsingHeader() 5006 *p_open = false; in CollapsingHeader() 6308 bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) in BeginTabItem() argument 6316 bool ret = TabItemEx(tab_bar, label, p_open, flags); in BeginTabItem() 6339 bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags f… in TabItemEx() argument 6354 if (p_open && !*p_open) in TabItemEx() 6363 ImVec2 size = TabItemCalcSize(label, p_open != NULL); in TabItemEx() [all …]
|
D | imgui.cpp | 4866 bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) in Begin() argument 4903 window->HasCloseButton = (p_open != NULL); in Begin() 5380 if (p_open != NULL) in Begin() 5385 *p_open = false; in Begin() 5399 …float pad_right = (p_open == NULL) ? style.FramePadding.x : (style.FramePaddin… in Begin() 5405 …clip_rect.Max.x = window->Pos.x + window->Size.x - (p_open ? title_bar_rect.GetHeight() - 3 : styl… in Begin() 5489 bool ImGui::Begin(const char* name, bool* p_open, const ImVec2& size_first_use, float bg_alpha_over… in Begin() argument 5499 return Begin(name, p_open, flags); in Begin() 6938 bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) in BeginPopupModal() argument 6955 const bool is_open = Begin(name, p_open, flags); in BeginPopupModal() [all …]
|
D | imgui_internal.h | 1433 …IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabI…
|