mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-21 21:26:12 +00:00
Don't enforce max row count for mesh viewer
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user