- 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

@@ -151,9 +151,9 @@ namespace fennec::test
fennec_test_spacer(1);
fennec_test_run([]() -> float { int i; float f = fennec::frexp(2.4f, i); return fennec::ldexp(f, i); }(), 2.4f);
fennec_test_run([]() -> float { int i; float f = fennec::frexp(2.5f, i); return fennec::ldexp(f, i); }(), 2.5f);
fennec_test_run([]() -> float { int i; float f = fennec::frexp(2.6f, i); return fennec::ldexp(f, i); }(), 2.6f);
fennec_test_run([]() -> float { int i; const float f = fennec::frexp(2.4f, i); return fennec::ldexp(f, i); }(), 2.4f);
fennec_test_run([]() -> float { int i; const float f = fennec::frexp(2.5f, i); return fennec::ldexp(f, i); }(), 2.5f);
fennec_test_run([]() -> float { int i; const float f = fennec::frexp(2.6f, i); return fennec::ldexp(f, i); }(), 2.6f);
fennec_test_spacer(2);