From d2b5fc5b3bc648afffa42375706429685ac63794 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 12 Feb 2024 12:55:11 +0100 Subject: Split rendering into own thread and sync through render action lists --- src/Defines.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Defines.hpp (limited to 'src/Defines.hpp') diff --git a/src/Defines.hpp b/src/Defines.hpp new file mode 100644 index 0000000..1280e93 --- /dev/null +++ b/src/Defines.hpp @@ -0,0 +1,13 @@ +#pragma once + +#define APP_NAME "Meowcraft" + +#define WINDOW_WIDTH 800 +#define WINDOW_HEIGHT 600 +#define ASPECT (static_cast(WINDOW_WIDTH) / WINDOW_HEIGHT) + +#define FOV 90 + +// #DBDBDB +#define SKY_COLOR {0.85, 0.85, 0.85} +#define SUN_DIRECTION {1, -1, 0} -- cgit 1.4.1