summaryrefslogtreecommitdiff
path: root/test/perf-assetFactory.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-07-07 00:25:19 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-07-07 00:25:19 +0100
commitb43ed0554f5d6326f80e8d6bd85d75a422ca8c05 (patch)
tree596e967d69b073109dad7db437a60093bf499e26 /test/perf-assetFactory.cpp
parentReplace deprecated GL_QUADS usage in text rendering (diff)
parentReplace deprecated GL_QUADS usage in text rendering (diff)
downloadilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.tar.bz2
ilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.tar.xz
ilt-b43ed0554f5d6326f80e8d6bd85d75a422ca8c05.zip
Merge branch 'imgui'
Diffstat (limited to 'test/perf-assetFactory.cpp')
-rw-r--r--test/perf-assetFactory.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/perf-assetFactory.cpp b/test/perf-assetFactory.cpp
index 147e4ba..671713c 100644
--- a/test/perf-assetFactory.cpp
+++ b/test/perf-assetFactory.cpp
@@ -1,13 +1,11 @@
#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)
{
- TestMainWindow window;
+ TestMainWindowAppBase window;
for (auto _ : state) {
benchmark::DoNotOptimize(AssetFactory::loadXML(RESDIR "/brush47.xml"));
@@ -17,7 +15,7 @@ brush47xml_load(benchmark::State & state)
static void
foliagexml_load(benchmark::State & state)
{
- TestMainWindow window;
+ TestMainWindowAppBase window;
for (auto _ : state) {
benchmark::DoNotOptimize(AssetFactory::loadXML(RESDIR "/foliage.xml"));