Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand preambles to Redot | Spartan322 | 2024-10-31 | 19 | -38/+76 |
| | |||||
* | Fix GCC 14 -Wtemplate-id-cdtor warning | George L. Albany | 2024-08-25 | 1 | -1/+1 |
| | | | As was fixed with godotengine/godot#91208 | ||||
* | Fix `#include` formatting | Thaddeus Crews | 2024-06-25 | 1 | -4/+4 |
| | |||||
* | Merge pull request #1457 from AThousandShips/foreach_list | David Snopek | 2024-05-16 | 1 | -24/+42 |
|\ | | | | | [Core] Reduce and prevent unnecessary random-access to `List` | ||||
| * | Optionaly add compatibility operators | A Thousand Ships | 2024-05-07 | 1 | -0/+10 |
| | | |||||
| * | [Core] Reduce and prevent unnecessary random-access to `List` | A Thousand Ships | 2024-05-07 | 1 | -24/+32 |
| | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` | ||||
* | | [Core] Add `LocalVector::has` for convenience | A Thousand Ships | 2024-05-06 | 1 | -0/+4 |
|/ | |||||
* | Enforce template syntax `typename` over `class` | Thaddeus Crews | 2024-03-10 | 18 | -69/+69 |
| | |||||
* | [Core] Improve `CowData` and `Memory` metadata alignment. | bruvzg | 2024-02-05 | 1 | -34/+65 |
| | |||||
* | Switch to 64-bit ints. | bruvzg | 2024-01-10 | 3 | -111/+194 |
| | |||||
* | Merge pull request #1245 from AThousandShips/alloc_fix | David Snopek | 2023-09-20 | 1 | -2/+5 |
|\ | | | | | Fix allocation size overflow check in `CowData` | ||||
| * | Fix allocation size overflow check in `CowData` | A Thousand Ships | 2023-09-19 | 1 | -2/+5 |
| | | |||||
* | | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicable | A Thousand Ships | 2023-09-13 | 4 | -11/+11 |
|/ | |||||
* | Fix forgotten not operator | Adam Scott | 2023-08-16 | 1 | -1/+1 |
| | |||||
* | Fix Clang deprecated builtins | Adam Scott | 2023-08-15 | 1 | -5/+6 |
| | | | | | | It seems that Clang and GCC have different interpretations of certain builtins. So this PR uses std <type_traits> functions just as cowdata.h does in the godot project. | ||||
* | Attempt to fully implement CharString | David Snopek | 2023-06-22 | 1 | -1/+7 |
| | |||||
* | Fix incorrect memory allocation in release builds. | bruvzg | 2023-02-21 | 1 | -5/+5 |
| | | | | Co-authored-by: lightyears <lightyears1998@hotmail.com> | ||||
* | Merge pull request #982 from WildRackoon/templates-add-LocalVector | Rémi Verschelde | 2023-01-30 | 1 | -0/+339 |
|\ | | | | | | | Add missing local_vector.hpp template | ||||
| * | Add missing LocalVector template | Rackoon | 2023-01-30 | 1 | -0/+339 |
| | | | | | | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | ||||
* | | Expose some low level functions and String operators. | bruvzg | 2023-01-19 | 1 | -2/+2 |
| | | |||||
* | | Sync license copyright with upstream GH-70885 | Rémi Verschelde | 2023-01-10 | 18 | -523/+523 |
|/ | |||||
* | Basic static analysis fixes | Andy Maloney | 2022-11-18 | 4 | -4/+4 |
| | | | | | | | - remove extraneous semicolons - use "nullptr" instead of "0" - remove "break" after "return" - use <cstdio> instead of <stdio.h> | ||||
* | Run scripts to format and make headers consistent | Aaron Franke | 2022-10-09 | 18 | -55/+55 |
| | |||||
* | Add SelfList template | Ricardo Buring | 2022-09-13 | 1 | -0/+143 |
| | |||||
* | Update hashfuncs, add some missing math funcs. | Fabio Alessandrelli | 2022-09-11 | 1 | -71/+265 |
| | |||||
* | Add bindings for Vector4, Vector4i, Projection built-in types. | bruvzg | 2022-07-21 | 1 | -0/+16 |
| | |||||
* | Sync containers with new HashMap/HashSet, sync API headers. | bruvzg | 2022-06-06 | 5 | -409/+1060 |
| | |||||
* | Update copyright year | Rémi Verschelde | 2022-03-15 | 16 | -32/+32 |
| | |||||
* | Port a bunch of Godot container templates to GDExtension. | bruvzg | 2022-02-18 | 16 | -0/+5594 |