Home
last modified time | relevance | path

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

/third_party/EGL/sdk/docs/man/xhtml/
H A Dmaketoc.pl86 sub BeginTable { subroutine
302 BeginTable($firstletter);
316 BeginTable("egl");
326 BeginTable("glu");
336 BeginTable("glut");
346 BeginTable("glX");
/third_party/skia/third_party/externals/egl-registry/sdk/docs/man/xhtml/
H A Dmaketoc.pl86 sub BeginTable { subroutine
302 BeginTable($firstletter);
316 BeginTable("egl");
326 BeginTable("glu");
336 BeginTable("glut");
346 BeginTable("glX");
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp508 if (ImGui::BeginTable("split", 3)) in ShowDemoWindow()
1181 if (ImGui::BeginTable("split1", 3, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders)) in ShowDemoWindowWidgets()
1193 if (ImGui::BeginTable("split2", 3, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings | ImGuiTableFlags_Borders)) in ShowDemoWindowWidgets()
2424 if (ImGui::BeginTable("split", 2, ImGuiTableFlags_Resizable | ImGuiTableFlags_NoSavedSettings)) in ShowDemoWindowLayout()
3043 if (ImGui::BeginTable("table", 4, ImGuiTableFlags_Borders)) in ShowDemoWindowLayout()
3613 // Most settings are configured on a per-table basis via the flags passed to BeginTable() and TableSetupColumns APIs.
3633 if (ImGui::BeginTable("table1", 3))
3650 if (ImGui::BeginTable("table2", 3))
3671 if (ImGui::BeginTable("table3", 3))
3723 if (ImGui::BeginTable("table
[all...]
H A Dimgui.h199 typedef int ImGuiTableFlags; // -> enum ImGuiTableFlags_ // Flags: For BeginTable()
720 // - 1. Call BeginTable().
738 IMGUI_API bool BeginTable(const char* str_id, int column, ImGuiTableFlags flags = 0, const ImVec2& outer_size = ImVec2(0.0f, 0.0f), float inner_width = 0.0f);
739 IMGUI_API void EndTable(); // only call EndTable() if BeginTable() returns true!
762 // - Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable().
767 IMGUI_API int TableGetColumnCount(); // return number of columns (value passed to BeginTable)
1119 // Flags for ImGui::BeginTable()
1139 // - Using Stretch columns OFTEN DOES NOT MAKE SENSE if ScrollX is on, UNLESS you have specified a value for 'inner_width' in BeginTable().
1182 ImGuiTableFlags_ScrollX = 1 << 24, // Enable horizontal scrolling. Require 'outer_size' parameter of BeginTable() to specify the container size. Changes default sizing policy. Because this create a child window, ScrollY is currently generally recommended when using ScrollX.
1183 ImGuiTableFlags_ScrollY = 1 << 25, // Enable vertical scrolling. Require 'outer_size' parameter of BeginTable() t
[all...]
H A Dimgui_tables.cpp37 // - BeginTable() user begin into a table
48 // - TableUpdateLayout() [Internal] followup to BeginTable(): setup everything: widths, columns positions, clipping rectangles. Automatically called by the FIRST call to TableNextRow() or TableHeadersRow().
135 // that is, unless 'inner_width' is passed to BeginTable() to explicitly provide a total width to layout columns in.
180 // - Scrolling tables with a known outer size can be clipped earlier as BeginTable() will return false.
243 // - BeginTable()
304 bool ImGui::BeginTable(const char* str_id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) in BeginTable() function in ImGui
339 IM_ASSERT(table->ColumnsCount == columns_count && "BeginTable(): Cannot change columns count mid-frame while preserving same ID"); in BeginTableEx()
711 // Layout columns for the frame. This is in essence the followup to BeginTable().
1010 // Note that scrolling tables (where inner_window != outer_window) handle Y clipped earlier in BeginTable() so IsVisibleY really only applies to non-scrolling tables. in TableUpdateLayout()
1200 IM_ASSERT(table != NULL && "Only call EndTable() if BeginTable() return in EndTable()
[all...]
H A Dimgui.cpp12184 if (tool->Results.Size > 0 && BeginTable("##table", 3, ImGuiTableFlags_Borders)) in ShowStackToolWindow()

Completed in 42 milliseconds