Searched refs:BeginColumns (Results 1 - 4 of 4) sorted by relevance
/third_party/mesa3d/src/imgui/ |
H A D | imgui_internal.h | 1423 IMGUI_API void BeginColumns(const char* str_id, int count, ImGuiColumnsFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns().
|
H A D | imgui.cpp | 8321 void ImGui::BeginColumns(const char* str_id, int columns_count, ImGuiColumnsFlags flags) in BeginColumns() function in ImGui 8452 // [2018-03: This is currently the only public API, while we are working on making BeginColumns/EndColumns user-facing] 8467 BeginColumns(id, columns_count, flags); in Columns()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 22 // [SECTION] Columns, BeginColumns, EndColumns, etc. 3609 // [SECTION] Columns, BeginColumns, EndColumns, etc. 3626 // - BeginColumns() 3771 // Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns) 3823 void ImGui::BeginColumns(const char* str_id, int columns_count, ImGuiOldColumnFlags flags) 3947 // FIXME-COLUMNS: Share code with BeginColumns() - move code on columns setup. 4046 BeginColumns(id, columns_count, flags);
|
H A D | imgui_internal.h | 149 typedef int ImGuiOldColumnFlags; // -> enum ImGuiOldColumnFlags_ // Flags: for BeginColumns() 1252 // Flags for internal's BeginColumns(). Prefix using BeginTable() nowadays! 1293 float HostCursorPosY; // Backup of CursorPos at the time of BeginColumns() 1294 float HostCursorMaxPosX; // Backup of CursorMaxPos at the time of BeginColumns() 1295 ImRect HostInitialClipRect; // Backup of ClipRect at the time of BeginColumns() 1297 ImRect HostBackupParentWorkRect;//Backup of WorkRect at the time of BeginColumns() 2564 IMGUI_API void BeginColumns(const char* str_id, int count, ImGuiOldColumnFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns().
|
Completed in 39 milliseconds