Merge branch 'master' into viewport (inc Vulkan resize fix merge #1042)

This commit is contained in:
omar
2018-03-12 17:49:39 +01:00
13 changed files with 93 additions and 89 deletions

View File

@ -468,9 +468,9 @@ struct ImGuiColumnsSet
int Current;
int Count;
float MinX, MaxX;
float StartPosY;
float StartMaxPosX; // Backup of CursorMaxPos
float CellMinY, CellMaxY;
float LineMinY, LineMaxY;
float StartPosY; // Copy of CursorPos
float StartMaxPosX; // Copy of CursorMaxPos
ImVector<ImGuiColumnData> Columns;
ImGuiColumnsSet() { Clear(); }
@ -483,9 +483,9 @@ struct ImGuiColumnsSet
Current = 0;
Count = 1;
MinX = MaxX = 0.0f;
LineMinY = LineMaxY = 0.0f;
StartPosY = 0.0f;
StartMaxPosX = 0.0f;
CellMinY = CellMaxY = 0.0f;
Columns.clear();
}
};