File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -109,6 +109,16 @@ corrade_add_test(
109109)
110110target_include_directories (GfxBatchHbaoTest PRIVATE ${CMAKE_CURRENT_BINARY_DIR} )
111111
112+ corrade_add_test (
113+ GfxPbrIblTest
114+ GfxPbrIblTest.cpp
115+ LIBRARIES
116+ assets
117+ core
118+ gfx
119+ metadata
120+ )
121+ target_include_directories (GfxPbrIblTest PRIVATE ${CMAKE_CURRENT_BINARY_DIR} )
112122corrade_add_test (
113123 GfxReplayTest
114124 GfxReplayTest.cpp
Original file line number Diff line number Diff line change 1+ // Copyright (c) Meta Platforms, Inc. and its affiliates.
2+ // This source code is licensed under the MIT license found in the
3+ // LICENSE file in the root directory of this source tree.
4+
5+ #include < Corrade/Containers/Optional.h>
6+ #include < Corrade/TestSuite/Compare/Numeric.h>
7+ #include < Corrade/TestSuite/Tester.h>
8+ #include < Corrade/Utility/Path.h>
9+
10+ #include " esp/assets/ResourceManager.h"
11+ #include " esp/core/Logging.h"
12+ #include " esp/metadata/MetadataMediator.h"
13+
14+ #include " configure.h"
15+
16+ namespace {
17+ namespace Cr = Corrade;
18+ namespace Mn = Magnum;
19+
20+ using esp::assets::ResourceManager;
21+ using esp::gfx::LightInfo;
22+ using esp::gfx::LightPositionModel;
23+ using esp::gfx::LightSetup;
24+ using esp::metadata::MetadataMediator;
25+ using esp::sim::Simulator;
26+ using esp::sim::SimulatorConfiguration;
27+
28+ struct GfxPbrIblTest : Cr::TestSuite::Tester {
29+ explicit GfxPbrIblTest ();
30+
31+ esp::logging::LoggingContext loggingContext;
32+
33+ }; // struct GfxReplayTest
34+
35+ GfxPbrIblTest::GfxPbrIblTest () {}
36+
37+ } // namespace
38+
39+ CORRADE_TEST_MAIN (GfxPbrIblTest)
You can’t perform that action at this time.
0 commit comments