summaryrefslogtreecommitdiff
path: root/test/perf-assetFactory.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-02-27 00:26:20 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-02-27 00:26:20 +0000
commit2e440265e212c18208e683edab833fb9d3b735b4 (patch)
tree33498876147249e210313667c9c91b1cbc674b20 /test/perf-assetFactory.cpp
parentColour windows of sample model (diff)
downloadilt-2e440265e212c18208e683edab833fb9d3b735b4.tar.bz2
ilt-2e440265e212c18208e683edab833fb9d3b735b4.tar.xz
ilt-2e440265e212c18208e683edab833fb9d3b735b4.zip
Add a perf test over the asset factory
Diffstat (limited to 'test/perf-assetFactory.cpp')
-rw-r--r--test/perf-assetFactory.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/perf-assetFactory.cpp b/test/perf-assetFactory.cpp
new file mode 100644
index 0000000..f702fe7
--- /dev/null
+++ b/test/perf-assetFactory.cpp
@@ -0,0 +1,32 @@
+#include "assetFactory/assetFactory.h"
+#include "assetFactory/factoryMesh.h"
+#include "testMainWindow.h"
+#include "ui/applicationBase.h"
+#include <benchmark/benchmark.h>
+
+static void
+brush47xml_load(benchmark::State & state)
+{
+ for (auto _ : state) {
+ benchmark::DoNotOptimize(AssetFactory::loadXML(RESDIR "/brush47.xml"));
+ }
+}
+
+static void
+brush47xml_mesh(benchmark::State & state)
+{
+ TestMainWindow window;
+
+ const auto mf = AssetFactory::loadXML(RESDIR "/brush47.xml");
+ const auto brush47 = mf->assets.at("brush-47");
+ for (auto _ : state) {
+ std::for_each(brush47->meshes.begin(), brush47->meshes.end(), [](const FactoryMesh::CPtr & factoryMesh) {
+ factoryMesh->createMesh();
+ });
+ }
+}
+
+BENCHMARK(brush47xml_load);
+BENCHMARK(brush47xml_mesh);
+
+BENCHMARK_MAIN();