Exemple #1
0
 public PerfGraph(GraphRenderStyle style, string name, int graphHistoryCount = 100)
 {
     Style = style;
     Name  = name;
     _graphHistoryCount = graphHistoryCount;
     _values            = new float[_graphHistoryCount];
     _head = 0;
 }
 public PerformanceGraph(GraphRenderStyle style, string name)
 {
     _style = style;
     _name  = name;
 }