From 8b9ca5cc3a6d6505183d48216a7c22572592663f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 4 Feb 2024 17:29:46 +0100 Subject: wip --- bench/raycast.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bench/raycast.cpp (limited to 'bench/raycast.cpp') 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 + +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 -- cgit v1.2.3