summaryrefslogtreecommitdiff
path: root/src/renderer/cleanroom/backend_vulkan.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-27 16:35:11 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-27 16:35:11 +1000
commitfc35df8e999521b8be7c44800f4ff4665df3254a (patch)
tree2acc67b9830e712bef78270c6478c61e184f2047 /src/renderer/cleanroom/backend_vulkan.h
parent55bb30899899d1e6f34e85d87909d5108d085adb (diff)
heightmap function signatures
Diffstat (limited to 'src/renderer/cleanroom/backend_vulkan.h')
-rw-r--r--src/renderer/cleanroom/backend_vulkan.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/renderer/cleanroom/backend_vulkan.h b/src/renderer/cleanroom/backend_vulkan.h
index 6798b13..c8d5777 100644
--- a/src/renderer/cleanroom/backend_vulkan.h
+++ b/src/renderer/cleanroom/backend_vulkan.h
@@ -3,7 +3,8 @@
#define GPU_SWAPCHAIN_IMG_COUNT 2
-typedef struct gpu_swapchain {} gpu_swapchain;
+typedef struct gpu_swapchain {
+} gpu_swapchain;
typedef struct gpu_device {
// In Vulkan we store both physical and logical device here
VkPhysicalDevice physical_device;
@@ -13,7 +14,8 @@ typedef struct gpu_device {
VkPhysicalDeviceMemoryProperties memory;
VkCommandPool pool;
} gpu_device;
-typedef struct gpu_pipeline {} gpu_pipeline;
+typedef struct gpu_pipeline {
+} gpu_pipeline;
typedef struct gpu_renderpass {
VkRenderPass vk_handle;
@@ -21,7 +23,6 @@ typedef struct gpu_renderpass {
u32
} gpu_renderpass;
-
typedef struct gpu_cmd_encoder {
VkCommandBuffer cmd_buffer;
} gpu_cmd_encoder; \ No newline at end of file