lsfg-vk/include/utils/benchmark.hpp
2025-07-18 17:26:08 +02:00

15 lines
271 B
C++

#pragma once
#include <cstdint>
namespace Benchmark {
///
/// Run the benchmark.
///
/// @param width The width of the benchmark.
/// @param height The height of the benchmark.
///
[[noreturn]] void run(uint32_t width, uint32_t height);
}