diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-05-02 00:09:00 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-05-02 00:09:00 +0200 |
commit | 1b5f373f8e913aa948ef0964d26a0082e6563f0a (patch) | |
tree | be5b465b643f308b207925af8ec95df542c277bb /deimos/core/base.h | |
parent | a3fdb87df94f8d377b7ea90ca50a06418fda3867 (diff) |
Vulkan surface creation & present queue selection
Diffstat (limited to 'deimos/core/base.h')
-rw-r--r-- | deimos/core/base.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deimos/core/base.h b/deimos/core/base.h index 34a341f..0c15ccd 100644 --- a/deimos/core/base.h +++ b/deimos/core/base.h @@ -1,5 +1,8 @@ #pragma once
+// @Todo Add some compile-time config stuff
+#define DEIMOS_OS_WIN32 1 // NOLINT
+
#include "deimos/core/std.h"
#include "deimos/core/gsl.h"
|