summaryrefslogtreecommitdiffhomepage
path: root/bench/raycast.cpp
blob: 21b1643d6c45e7de29c0c2871f6b7081deab912e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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