ultimatepp/benchmarks/LionBenchmark/SomeRocks.cpp
cxl e201d6703d .benchmarks
git-svn-id: svn://ultimatepp.org/upp/trunk@13427 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-06-23 07:45:47 +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);
}