summaryrefslogtreecommitdiff
path: root/src/renderer/backends/backend_vulkan.c
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-05-30 22:19:07 +1000
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-05-30 22:19:07 +1000
commit59854f60b761d77cee4095c9ce45062c926dea5a (patch)
tree383d9a232e2ddf7341acbf1a96a8f45b96331219 /src/renderer/backends/backend_vulkan.c
parentbaf787b9eb742b0c52ecf8c9ae319dbfb4ea0f1b (diff)
wip
Diffstat (limited to 'src/renderer/backends/backend_vulkan.c')
-rw-r--r--src/renderer/backends/backend_vulkan.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/renderer/backends/backend_vulkan.c b/src/renderer/backends/backend_vulkan.c
index c3fad75..25a78e7 100644
--- a/src/renderer/backends/backend_vulkan.c
+++ b/src/renderer/backends/backend_vulkan.c
@@ -1699,16 +1699,6 @@ void resource_pools_init(arena* a, struct resource_pools* res_pools) {
context.resource_pools = res_pools;
}
-void backend_pools_init(arena* a, gpu_backend_pools* backend_pools) {
- pipeline_layout_pool pipeline_layout_pool =
- pipeline_layout_pool_create(a, MAX_PIPELINES, sizeof(gpu_pipeline_layout));
- backend_pools->pipeline_layouts = pipeline_layout_pool;
- pipeline_pool pipeline_pool = pipeline_pool_create(a, MAX_PIPELINES, sizeof(gpu_pipeline));
- backend_pools->pipelines = pipeline_pool;
- renderpass_pool rpass_pool = renderpass_pool_create(a, MAX_RENDERPASSES, sizeof(gpu_renderpass));
- backend_pools->renderpasses = rpass_pool;
-
- context.gpu_pools;
-}
+
#endif \ No newline at end of file