- More Documentation

- Vulkan Configuration Implementations
 - Fixed build errors on GCC and Clang
This commit is contained in:
2026-07-18 23:48:00 -04:00
parent ed381c4178
commit cf909624df
164 changed files with 19857 additions and 5872 deletions

View File

@@ -105,7 +105,7 @@ inline void fennec_test_threading_run_test_mpscq(array<thread, ThreadsV>& thread
template<typename ReturnT, typename...ParamsT, typename...ArgsT>
inline double fennec_test_threading_timed(ReturnT (func)(ParamsT...), ArgsT&&...args) {
auto start = std::chrono::high_resolution_clock::now();
const auto start = std::chrono::high_resolution_clock::now();
func(fennec::forward<ArgsT>(args)...);
return std::chrono::duration<double>(std::chrono::high_resolution_clock::now() - start).count();
}