Don't enforce max row count for mesh viewer

This commit is contained in:
baldurk
2016-02-07 18:51:45 +01:00
parent 174dd4e0dd
commit 6655d525d1
+8 -1
View File
@@ -146,7 +146,14 @@ namespace renderdocui.Windows
}
}
private const int MaxRowCount = 200000;
private int MaxRowCount
{
get
{
// for now, don't clamp rows on mesh view
return MeshView ? int.MaxValue : 200000;
}
}
// one UI state for each stage
private UIState m_VSIn = new UIState(MeshDataStage.VSIn);