| 295 | } |
| 296 | |
| 297 | ImGuiTable* ImGui::TableFindByID(ImGuiID id) |
| 298 | { |
| 299 | ImGuiContext& g = *GImGui; |
| 300 | return g.Tables.GetByKey(id); |
| 301 | } |
| 302 | |
| 303 | // Read about "TABLE SIZING" at the top of this file. |
| 304 | bool ImGui::BeginTable(const char* str_id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) |