|
@@ -358,9 +358,6 @@ namespace bbiwarg.DataSource
|
|
|
|
|
|
public VertexArray getVertexArray()
|
|
|
{
|
|
|
- Stopwatch sw = new Stopwatch();
|
|
|
- sw.Start();
|
|
|
-
|
|
|
Vertex[] vertices = new Vertex[width * height];
|
|
|
Color[] colors = new Color[width * height];
|
|
|
|
|
@@ -379,10 +376,6 @@ namespace bbiwarg.DataSource
|
|
|
|
|
|
}
|
|
|
|
|
|
- sw.Stop();
|
|
|
- Console.WriteLine(sw.ElapsedMilliseconds);
|
|
|
-
|
|
|
-
|
|
|
return new VertexArray(vertices, colors);
|
|
|
}
|
|
|
|