mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2025-10-30 07:01:10 +00:00
15 lines
271 B
C++
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);
|
|
|
|
}
|