Searched refs:TextWrapped (Results 1 - 5 of 5) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp361 ImGui::TextWrapped("The logging API redirects all text output so you can easily capture the content of a window or a block. Tree nodes can be automatically expanded.");
364 ImGui::TextWrapped("You can also call ImGui::LogText() to output directly to the log without a visual output.");
670 ImGui::TextWrapped("This text should automatically wrap on the edge of the window. The current implementation for text wrapping follows simple rules suitable for English and possibly other languages.");
705 ImGui::TextWrapped("CJK text will only appears if the font was loaded with the appropriate CJK character ranges. Call io.Font->AddFontFromFileTTF() manually to load extra character ranges. Read misc/fonts/README.txt for details.");
719 ImGui::TextWrapped("Below we are displaying the font texture (which is the only texture we have access to in this demo). Use the 'ImTextureID' type as storage to pass pointers or identifier to your own texture data. Hover the texture for a zoomed view!");
749 ImGui::TextWrapped("And now some textured buttons..");
1680 ImGui::TextWrapped("(Use ImGui::SameLine() to keep adding items to the right of the preceding item)");
2027 ImGui::TextWrapped("On a per-widget basis we are occasionally clipping text CPU-side if it won't fit in its frame. Otherwise we are doing coarser clipping + passing a scissor rectangle to the renderer. The system is designed to try minimizing both execution and CPU/GPU rendering cost.");
2029 ImGui::TextWrapped("(Click and drag)");
2063 ImGui::TextWrapped("Whe
[all...]
H A Dimgui.h377 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().
H A Dimgui_widgets.cpp119 // - TextWrapped()
283 void ImGui::TextWrapped(const char* fmt, ...) function in class:ImGui
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h377 IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize().
H A Dimgui_widgets.cpp119 // - TextWrapped()
283 void ImGui::TextWrapped(const char* fmt, ...) function in class:ImGui

Completed in 46 milliseconds