summaryrefslogtreecommitdiff
path: root/src/std/buf.h
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-04-28 11:02:21 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-04-28 11:02:27 +1000
commit5e382c2095bc4891e2952ba87609f2796f2248ad (patch)
treeb3a87539ec5e31083b5d9fd83e19b54bf6f59696 /src/std/buf.h
parent411520b240446f878a27c5d89812000774cc3c15 (diff)
start porting vulkan code to new RAL
Diffstat (limited to 'src/std/buf.h')
-rw-r--r--src/std/buf.h17
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;