ultimatepp/benchmarks/PainterBenchmark/SomeRocks.cpp
cxl c4d0d63aab .benchmarks
git-svn-id: svn://ultimatepp.org/upp/trunk@14485 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-05-20 14:39:17 +00:00

14 lines
No EOL
218 B
C++

#include "LionBenchmark.h"
void SomeRocks(Painter& sw)
{
static Painting rocks;
ONCELOCK {
FileIn in(GetDataFile("SomeRocks.painting"));
rocks.Serialize(in);
}
sw.EvenOdd();
sw.Paint(rocks);
}