Home
last modified time | relevance | path

Searched refs:indent_w (Results 1 - 4 of 4) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimgui.h334 IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by style.IndentSpacing or indent_w if != 0
335 IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by style.IndentSpacing or indent_w if != 0
H A Dimgui.cpp6635 void ImGui::Indent(float indent_w) in Indent() argument
6639 window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Indent()
6643 void ImGui::Unindent(float indent_w) in Unindent() argument
6647 window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Unindent()
/third_party/skia/third_party/externals/imgui/
H A Dimgui.h445 IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by indent_w, or style.IndentSpacing if indent_w <= 0
446 IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by indent_w, or style.IndentSpacing if indent_w <= 0
H A Dimgui.cpp7679 void ImGui::Indent(float indent_w) in Indent() argument
7683 window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Indent()
7687 void ImGui::Unindent(float indent_w) in Unindent() argument
7691 window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Unindent()

Completed in 71 milliseconds