/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_demo.cpp | 207 ImGui::BulletText("Double-click on title bar to collapse window."); in ShowUserGuide() 208 ImGui::BulletText( in ShowUserGuide() 211 ImGui::BulletText("CTRL+Click on a slider or drag box to input value as text."); in ShowUserGuide() 212 ImGui::BulletText("TAB/SHIFT+TAB to cycle through keyboard editable fields."); in ShowUserGuide() 214 ImGui::BulletText("CTRL+Mouse Wheel to zoom window contents."); in ShowUserGuide() 215 ImGui::BulletText("While inputing text:\n"); in ShowUserGuide() 217 ImGui::BulletText("CTRL+Left/Right to word jump."); in ShowUserGuide() 218 ImGui::BulletText("CTRL+A or double-click to select all."); in ShowUserGuide() 219 ImGui::BulletText("CTRL+X/C/V to use clipboard cut/copy/paste."); in ShowUserGuide() 220 ImGui::BulletText("CTR in ShowUserGuide() [all...] |
H A D | imgui_tables.cpp | 3537 BulletText("OuterRect: Pos: (%.1f,%.1f) Size: (%.1f,%.1f) Sizing: '%s'", table->OuterRect.Min.x, table->OuterRect.Min.y, table->OuterRect.GetWidth(), table->OuterRect.GetHeight(), DebugNodeTableGetSizingPolicyDesc(table->Flags)); 3538 BulletText("ColumnsGivenWidth: %.1f, ColumnsAutoFitWidth: %.1f, InnerWidth: %.1f%s", table->ColumnsGivenWidth, table->ColumnsAutoFitWidth, table->InnerWidth, table->InnerWidth == 0.0f ? " (auto)" : ""); 3539 BulletText("CellPaddingX: %.1f, CellSpacingX: %.1f/%.1f, OuterPaddingX: %.1f", table->CellPaddingX, table->CellSpacingX1, table->CellSpacingX2, table->OuterPaddingX); 3540 BulletText("HoveredColumnBody: %d, HoveredColumnBorder: %d", table->HoveredColumnBody, table->HoveredColumnBorder); 3541 BulletText("ResizedColumn: %d, ReorderColumn: %d, HeldHeaderColumn: %d", table->ResizedColumn, table->ReorderColumn, table->HeldHeaderColumn); 3542 //BulletText("BgDrawChannels: %d/%d", 0, table->BgDrawChannelUnfrozen); 3586 BulletText("SaveFlags: 0x%08X", settings->SaveFlags); 3587 BulletText("ColumnsCount: %d (max %d)", settings->ColumnsCount, settings->ColumnsCountMax); 3592 BulletText("Column %d Order %d SortOrder %d %s Vis %d %s %7.3f UserID 0x%08X",
|
H A D | imgui.cpp | 11343 BulletText("'%s':", g.NavWindow->Name); in ShowMetricsWindow() 11365 BulletText("Table 0x%08X (%d columns, in '%s')", table->ID, table->ColumnsCount, table->OuterWindow->Name); in ShowMetricsWindow() 11446 BulletText("PopupID: %08x, Window: '%s'%s%s", g.OpenPopupStack[i].PopupId, window ? window->Name : "NULL", window && (window->Flags & ImGuiWindowFlags_ChildWindow) ? " ChildWindow" : "", window && (window->Flags & ImGuiWindowFlags_ChildMenu) ? " ChildMenu" : ""); in ShowMetricsWindow() 11511 BulletText("%s", g.SettingsHandlers[n].TypeName); in ShowMetricsWindow() 11663 BulletText("Width: %.1f (MinX: %.1f, MaxX: %.1f)", columns->OffMaxX - columns->OffMinX, columns->OffMinX, columns->OffMaxX); in DebugNodeColumns() 11665 BulletText("Column %02d: OffsetNorm %.3f (= %.1f px)", column_n, columns->Columns[column_n].OffsetNorm, GetColumnOffsetFromNorm(columns, columns->Columns[column_n].OffsetNorm)); in DebugNodeColumns() 11700 BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); in DebugNodeDrawList() 11827 BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d, Offset: (%.1f,%.1f)", in DebugNodeFont() 11897 BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer. in DebugNodeStorage() 11951 BulletText("Mai in DebugNodeViewport() [all...] |
H A D | imgui.h | 496 IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()
|
H A D | imgui_widgets.cpp | 146 // - BulletText() 378 void ImGui::BulletText(const char* fmt, ...) in BulletText() function in ImGui
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.cpp | 9325 ImGui::BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); in ShowMetricsWindow() 9387 ImGui::BulletText("Pos: (%.1f,%.1f), Size: (%.1f,%.1f), SizeContents (%.1f,%.1f)", window->Pos.x, window->Pos.y, window->Size.x, window->Size.y, window->SizeContents.x, window->SizeContents.y); in ShowMetricsWindow() 9388 ImGui::BulletText("Flags: 0x%08X (%s%s%s%s%s%s%s%s%s..)", flags, in ShowMetricsWindow() 9392 ImGui::BulletText("Scroll: (%.2f/%.2f,%.2f/%.2f)", window->Scroll.x, GetWindowScrollMaxX(window), window->Scroll.y, GetWindowScrollMaxY(window)); in ShowMetricsWindow() 9393 ImGui::BulletText("Active: %d/%d, WriteAccessed: %d, BeginOrderWithinContext: %d", window->Active, window->WasActive, window->WriteAccessed, (window->Active || window->WasActive) ? window->BeginOrderWithinContext : -1); in ShowMetricsWindow() 9394 ImGui::BulletText("Appearing: %d, Hidden: %d (Reg %d Resize %d), SkipItems: %d", window->Appearing, window->Hidden, window->HiddenFramesRegular, window->HiddenFramesForResize, window->SkipItems); in ShowMetricsWindow() 9395 ImGui::BulletText("NavLastIds: 0x%08X,0x%08X, NavLayerActiveMask: %X", window->NavLastIds[0], window->NavLastIds[1], window->DC.NavLayerActiveMask); in ShowMetricsWindow() 9396 ImGui::BulletText("NavLastChildNavWindow: %s", window->NavLastChildNavWindow ? window->NavLastChildNavWindow->Name : "NULL"); in ShowMetricsWindow() 9398 ImGui::BulletText("NavRectRel[0]: (%.1f,%.1f)(%.1f,%.1f)", window->NavRectRel[0].Min.x, window->NavRectRel[0].Min.y, window->NavRectRel[0].Max.x, window->NavRectRel[0].Max.y); in ShowMetricsWindow() 9400 ImGui::BulletText("NavRectRe in ShowMetricsWindow() [all...] |
H A D | imgui.h | 381 IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text()
|
H A D | imgui_widgets.cpp | 123 // - BulletText() 335 void ImGui::BulletText(const char* fmt, ...) in BulletText() function in ImGui
|