summaryrefslogtreecommitdiff
path: root/src/renderer/backends/vulkan_helpers.h
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-05-03 23:31:02 +1000
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-05-03 23:31:02 +1000
commit8aad3ce06da4c8e9d2e41b39607640a5e9c7ded7 (patch)
treeb64203b7ca39b6978519525a4c2918f834c60849 /src/renderer/backends/vulkan_helpers.h
parentaed7d1b7ac340c19656059c9cbd94aff40952f83 (diff)
get present queue
Diffstat (limited to 'src/renderer/backends/vulkan_helpers.h')
-rw-r--r--src/renderer/backends/vulkan_helpers.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/renderer/backends/vulkan_helpers.h b/src/renderer/backends/vulkan_helpers.h
index baff4e7..d91b4a9 100644
--- a/src/renderer/backends/vulkan_helpers.h
+++ b/src/renderer/backends/vulkan_helpers.h
@@ -1,6 +1,5 @@
#pragma once
-#include <assert.h>
#include <vulkan/vulkan.h>
#include <vulkan/vulkan_core.h>
@@ -30,17 +29,6 @@ static void plat_get_required_extension_names(cstr_darray* extensions) {
// TODO: typedef struct vk_debugger {} vk_debugger;
-typedef struct queue_family_indices {
- u32 graphics_queue_index;
- u32 present_queue_index;
- u32 compute_queue_index;
- u32 transfer_queue_index;
- bool has_graphics;
- bool has_present;
- bool has_compute;
- bool has_transfer;
-} queue_family_indices;
-
typedef struct vulkan_physical_device_requirements {
bool graphics;
bool present;