diff options
author | omnisci3nce <omniscient.oce@gmail.com> | 2024-04-28 11:02:21 +1000 |
---|---|---|
committer | omnisci3nce <omniscient.oce@gmail.com> | 2024-04-28 11:02:27 +1000 |
commit | 5e382c2095bc4891e2952ba87609f2796f2248ad (patch) | |
tree | b3a87539ec5e31083b5d9fd83e19b54bf6f59696 /src/std | |
parent | 411520b240446f878a27c5d89812000774cc3c15 (diff) |
start porting vulkan code to new RAL
Diffstat (limited to 'src/std')
-rw-r--r-- | src/std/buf.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/std/buf.h b/src/std/buf.h new file mode 100644 index 0000000..b0f8b85 --- /dev/null +++ b/src/std/buf.h @@ -0,0 +1,17 @@ +/** + * @file buf.h + * @author your name (you@domain.com) + * @brief + * @version 0.1 + * @date 2024-04-28 + * + * @copyright Copyright (c) 2024 + * + */ +#pragma once +#include "defines.h" + +typedef struct bytebuffer { + u8* buf; + size_t size; +} bytebuffer; |