Lines Matching defs:ImVec1
470 struct ImVec1
473 ImVec1() { x = 0.0f; }
474 ImVec1(float _x) { x = _x; }
536 ImVec1 BackupIndent;
537 ImVec1 BackupGroupOffset;
1090 ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.)
1091 ImVec1 GroupOffset;
1092 ImVec1 ColumnsOffset; // Offset to the current column (if ColumnsCurrent > 0). FIXME: This and the above should be a stack to allow use cases like Tree->Column->Tree. Need revamp columns API.
1120 Indent = ImVec1(0.0f);
1121 GroupOffset = ImVec1(0.0f);
1122 ColumnsOffset = ImVec1(0.0f);