summaryrefslogtreecommitdiff
path: root/src/renderer/cleanroom/backend_vulkan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/cleanroom/backend_vulkan.h')
-rw-r--r--src/renderer/cleanroom/backend_vulkan.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/renderer/cleanroom/backend_vulkan.h b/src/renderer/cleanroom/backend_vulkan.h
deleted file mode 100644
index c8d5777..0000000
--- a/src/renderer/cleanroom/backend_vulkan.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#pragma once
-#include "cleanroom/ral.h"
-
-#define GPU_SWAPCHAIN_IMG_COUNT 2
-
-typedef struct gpu_swapchain {
-} gpu_swapchain;
-typedef struct gpu_device {
- // In Vulkan we store both physical and logical device here
- VkPhysicalDevice physical_device;
- VkDevice logical_device;
- VkPhysicalDeviceProperties properties;
- VkPhysicalDeviceFeatures features;
- VkPhysicalDeviceMemoryProperties memory;
- VkCommandPool pool;
-} gpu_device;
-typedef struct gpu_pipeline {
-} gpu_pipeline;
-
-typedef struct gpu_renderpass {
- VkRenderPass vk_handle;
- VkFramebuffer framebuffers[GPU_SWAPCHAIN_IMG_COUNT];
- u32
-} gpu_renderpass;
-
-typedef struct gpu_cmd_encoder {
- VkCommandBuffer cmd_buffer;
-} gpu_cmd_encoder; \ No newline at end of file