- 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

@@ -30,7 +30,7 @@ namespace fennec::test
inline void fennec_test_lang_bits()
{
int a = 0x48ef13ad;
int b = 0x23e5ab9c;
const int b = 0x23e5ab9c;
fennec_test_run(fennec::bit_cast<float>(0x3ee00000), 0.4375f);

View File

@@ -33,17 +33,17 @@ inline bool fennec_test_lang_function_test() {
inline void fennec_test_lang_function() {
function<bool()> test;
fennec_test_run((bool)(test = fennec_test_lang_function_test), true);
fennec_test_run(bool(test = fennec_test_lang_function_test), true);
fennec_test_run(test(), true);
fennec_test_spacer(1);
fennec_test_run((bool)(test = []() { return true; }), true);
fennec_test_run(bool(test = []() { return true; }), true);
fennec_test_run(test(), true);
fennec_test_spacer(1);
fennec_test_run((bool)(test = nullptr), false);
fennec_test_run(bool(test = nullptr), false);
}
}

View File

@@ -27,10 +27,10 @@ namespace fennec::test
inline void fennec_test_lang_hashing() {
size_t num = 61;
float_t numf = bit_cast<float>((uint32_t)num);
double_t numd = bit_cast<double>(num);
size_t exp = hash<size_t>()(num);
constexpr size_t num = 61;
constexpr float_t numf = bit_cast<float>(uint32_t(num));
constexpr double_t numd = bit_cast<double>(num);
constexpr size_t exp = hash<size_t>()(num);
fennec_test_run(hash<int8_t>()(num), exp);
fennec_test_run(hash<uint8_t>()(num), exp);

View File

@@ -0,0 +1,55 @@
// =====================================================================================================================
// fennec, a free and open source game engine
// Copyright © 2025 Medusa Slockbower
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
// =====================================================================================================================
///
/// \file test_ranges.h
/// \brief
///
///
/// \details
/// \author Medusa Slockbower
///
/// \copyright Copyright © 2025 - 2026 Medusa Slockbower ([GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html))
///
///
#ifndef FENNEC_TEST_LANG_RANGES_H
#define FENNEC_TEST_LANG_RANGES_H
#include "../../test.h"
#include <fennec/lang/ranges.h>
#include <fennec/string/string.h>
namespace fennec::test
{
inline void fennec_test_lang_ranges() {
string res = string(10);
for (const int i : range<int>(0, 10)) {
res[i] = char('0' + char(i));
}
fennec_test_run(res, string("0123456789"));
}
}
#endif // FENNEC_TEST_LANG_RANGES_H