| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merged main. | Per Larsson | 2021-12-14 | 1 | -7/+12 |
| |\ | |||||
| | * | Fixed use of undefined preprocessor macro | Martin Ridgers | 2021-11-17 | 1 | -1/+2 |
| | | | |||||
| | * | if-def'd out Windows specific features | Martin Ridgers | 2021-10-29 | 1 | -0/+4 |
| |/ | |||||
| * | Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issues | Stefan Boberg | 2021-10-20 | 1 | -0/+2 |
| | | |||||
| * | timer: cleaned up Stopwatch, removed GetCpuTimerValue | Stefan Boberg | 2021-09-29 | 1 | -1/+1 |
| | | |||||
| * | Removed WindowsException from public headers | Stefan Boberg | 2021-09-17 | 1 | -5/+5 |
| | | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -8/+8 |
| | | | | | | | * 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 | -2/+1 |
| | | | | | easier to tweak implementation | ||||
| * | Fixed a number of unreferenced variable warnings | Stefan Boberg | 2021-09-09 | 1 | -0/+1 |
| | | |||||
| * | Cleaned up exception handling | Stefan Boberg | 2021-05-21 | 1 | -1/+4 |
| | | | | | We now use std::system_error where possible to report Win32 system errors. We still have WindowsException for general HRESULT based errors but we should phase it out where possible | ||||
| * | Adding zenservice code | Stefan Boberg | 2021-05-11 | 1 | -0/+341 |