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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.cpp6610 // spacing_w < 0 : use default spacing if pos_x == 0, no spacing if pos_x != 0
6611 // spacing_w >= 0 : enforce spacing amount
6612 void ImGui::SameLine(float pos_x, float spacing_w) argument
6621 if (spacing_w < 0.0f) spacing_w = 0.0f;
6622 window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + pos_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x;
6627 if (spacing_w < 0.0f) spacing_w = g.Style.ItemSpacing.x;
6628 window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w;
H A Dimgui.h330 IMGUI_API void SameLine(float local_pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates.
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.cpp6610 // spacing_w < 0 : use default spacing if pos_x == 0, no spacing if pos_x != 0
6611 // spacing_w >= 0 : enforce spacing amount
6612 void ImGui::SameLine(float pos_x, float spacing_w) argument
6621 if (spacing_w < 0.0f) spacing_w = 0.0f;
6622 window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + pos_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x;
6627 if (spacing_w < 0.0f) spacing_w = g.Style.ItemSpacing.x;
6628 window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w;
H A Dimgui.h330 IMGUI_API void SameLine(float local_pos_x = 0.0f, float spacing_w = -1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates.

Completed in 76 milliseconds