diff options
Diffstat (limited to 'bench/raycast.cpp')
-rw-r--r-- | bench/raycast.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/bench/raycast.cpp b/bench/raycast.cpp new file mode 100644 index 00000000..21b1643d --- /dev/null +++ b/bench/raycast.cpp @@ -0,0 +1,20 @@ +#include "src/raycast.hpp" +#include <benchmark/benchmark.h> + +namespace floormat { + +namespace { + +#warning TODO! + +[[maybe_unused]] void Raycast(benchmark::State& state) +{ + for (auto _ : state) + (void)0; +} + +BENCHMARK(Raycast)->Unit(benchmark::kMicrosecond); + +} // namespace + +} // namespace floormat |