| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Format fix. | Per Larsson | 2022-01-22 | 1 | -4/+2 |
| | | |||||
| * | Added an implementation of task_group::run() on POSIX | Martin Ridgers | 2022-01-11 | 1 | -2/+9 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 1 | -7/+49 |
| |\ | |||||
| | * | Fake concrt for non-Windows platforms | Martin Ridgers | 2021-12-02 | 1 | -0/+42 |
| | | | |||||
| | * | WideToUtf8() to PathToUtf8() | Martin Ridgers | 2021-12-02 | 1 | -1/+1 |
| | | | |||||
| | * | Deleted unused variable | Martin Ridgers | 2021-12-02 | 1 | -2/+0 |
| | | | |||||
| | * | Signed-unsigned comparison compile fix | Martin Ridgers | 2021-12-02 | 1 | -1/+1 |
| | | | |||||
| | * | If-def'd a #pragma statement | Martin Ridgers | 2021-12-02 | 1 | -0/+2 |
| | | | |||||
| | * | If-def wrapped some Windows-only includes | Martin Ridgers | 2021-12-02 | 1 | -2/+4 |
| | | | |||||
| * | | Added simple GC interval scheduling. | Per Larsson | 2021-12-05 | 1 | -2/+2 |
| | | | |||||
| * | | gc: Added GcStorage base class and hooked it up to CasGc | Stefan Boberg | 2021-10-21 | 1 | -1/+4 |
| |/ | |||||
| * | timer: cleaned up Stopwatch, removed GetCpuTimerValue | Stefan Boberg | 2021-09-29 | 1 | -3/+3 |
| | | |||||
| * | It's not possible to compile out tests | Stefan Boberg | 2021-09-20 | 1 | -1/+3 |
| | | | | | Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly. | ||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -28/+28 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -1/+1 |
| | | | | | easier to tweak implementation | ||||
| * | IoHash::HashMemory -> IoHash::HashBuffer for consistency with UE5 code | Stefan Boberg | 2021-09-02 | 1 | -6/+6 |
| | | |||||
| * | Removed pointer-based InsertChunk from CAS store interface. | Stefan Boberg | 2021-05-25 | 1 | -6/+9 |
| | | | | | All code must now use the IoBuffer path | ||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+1157 |