diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-04 15:47:54 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-05-04 15:48:49 +1000 |
commit | a51ef12d8583522ee229a0195a4132652f0f9cd8 (patch) | |
tree | 420878ce250678b603ff5944a7cd63a6f1d084e0 /src/std | |
parent | 74fd8a8424aeaccfaf7985f4ad2129fd54ae9fba (diff) |
finish swapchain creation
Diffstat (limited to 'src/std')
-rw-r--r-- | src/std/utils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/std/utils.h b/src/std/utils.h new file mode 100644 index 0000000..c9827a3 --- /dev/null +++ b/src/std/utils.h @@ -0,0 +1,4 @@ +#pragma once +#include <stdbool.h> + +const char* bool_str(bool input) { return input ? "True" : "False"; }
\ No newline at end of file |