Add PD::Image and add a setter for logfilter

This commit is contained in:
2026-03-21 15:52:09 +01:00
parent 6fab4a07a9
commit 4dab1987d1
8 changed files with 239 additions and 66 deletions
+2
View File
@@ -44,6 +44,7 @@ SOFTWARE.
namespace PD {
enum class LogLevel {
None,
Info,
Warning,
Error,
@@ -56,6 +57,7 @@ using u16 = unsigned short;
using u32 = unsigned int;
using u64 = unsigned long long;
using ptr = uintptr_t;
PD_API void LogFilter(LogLevel minimum);
PD_API void Log(const std::string& txt, LogLevel lvl = LogLevel::Info);
template <typename... Args>
void Log(std::format_string<Args...> fmt, Args&&... args) {