summaryrefslogtreecommitdiff
path: root/src/defines.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 12:08:41 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 12:08:41 +1000
commit5359c011a08ef2e06ed54104cc16c32868ca88ff (patch)
treecc644bb54934fb5d1980bd502c6f93e3737505da /src/defines.h
parentf926234600af1883c2be259360b44173bb7c12b4 (diff)
docs
Diffstat (limited to 'src/defines.h')
-rw-r--r--src/defines.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/defines.h b/src/defines.h
index 7275a4d..a16d68e 100644
--- a/src/defines.h
+++ b/src/defines.h
@@ -53,8 +53,9 @@ CORE_DEFINE_HANDLE(Handle); // Untyped handle that can be casted to a strongly t
#define PUB // For collecting public APIs to expose in an amalgamation header file
-#define MB(x) ((size_t) x * 1000 * 1000)
#define KB(x) ((size_t) x * 1000)
+#define MB(x) ((size_t) x * 1000 * 1000)
+#define GB(x) ((size_t) x * 1000 * 1000 * 1000)
// NOTE: The below is now handled in xmake.lua
// Platform will inform renderer backend (unless user overrides)