diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-29 14:50:49 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-29 14:50:49 +1000 |
commit | baf787b9eb742b0c52ecf8c9ae319dbfb4ea0f1b (patch) | |
tree | a3da522dda3c173bc7de13842c98bbb419324efa /src/defines.h | |
parent | 824579234685171f0ca78674c7c18dfe6b43fe6e (diff) |
opengl clear color working
Diffstat (limited to 'src/defines.h')
-rw-r--r-- | src/defines.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/defines.h b/src/defines.h index 4b6f8c7..a35dbf4 100644 --- a/src/defines.h +++ b/src/defines.h @@ -64,10 +64,11 @@ Renderer backend defines: #define CEL_REND_BACKEND_METAL 1 */ +// NOTE: The below is now handled in xmake.lua // Platform will inform renderer backend (unless user overrides) #if defined(CEL_PLATFORM_LINUX) -// #define CEL_REND_BACKEND_OPENGL 1 -#define CEL_REND_BACKEND_VULKAN 1 +#define CEL_REND_BACKEND_OPENGL 1 +// #define CEL_REND_BACKEND_VULKAN 1 #endif #if defined(CEL_PLATFORM_WINDOWS) |