summaryrefslogtreecommitdiff
path: root/src/renderer/ral.h
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-05-17 09:39:57 +1000
committerOmniscient <omniscient.oce@gmail.com>2024-05-17 09:39:57 +1000
commit9df999df385b74be5096218d206dd39988784237 (patch)
tree9ade81031095c70b5efb162920393903797e7ed4 /src/renderer/ral.h
parente61a2e43947cebaafe4c3725414d33e092bb6fad (diff)
starting on pool allocator
Diffstat (limited to 'src/renderer/ral.h')
-rw-r--r--src/renderer/ral.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/renderer/ral.h b/src/renderer/ral.h
index 30d5413..ee65233 100644
--- a/src/renderer/ral.h
+++ b/src/renderer/ral.h
@@ -78,6 +78,11 @@ struct graphics_pipeline_desc {
typedef struct gpu_renderpass_desc {
} gpu_renderpass_desc;
+typedef struct resource_pools {
+ // TODO: buffer pool
+ // TODO: texture pool
+} resource_pools;
+
// --- Lifecycle functions
bool gpu_backend_init(const char* window_name, struct GLFWwindow* window);