diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2024-06-05 19:04:25 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2024-06-05 19:04:25 +0300 |
commit | a6501b5d7ad204c3b998c843c7ed68ef7be323ba (patch) | |
tree | 1a442e6095abf160e36baa31a319858774cd1178 /src/state.h | |
parent | 6af7e785890a322f60c21a51e3d41cd9015e6773 (diff) | |
download | cgame-a6501b5d7ad204c3b998c843c7ed68ef7be323ba.tar.gz cgame-a6501b5d7ad204c3b998c843c7ed68ef7be323ba.tar.bz2 cgame-a6501b5d7ad204c3b998c843c7ed68ef7be323ba.zip |
more vks, stupid mutlistep build, and imgui
Diffstat (limited to 'src/state.h')
-rw-r--r-- | src/state.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/state.h b/src/state.h index d4f7e6c..6e78d49 100644 --- a/src/state.h +++ b/src/state.h @@ -99,15 +99,9 @@ typedef struct state { vks_context vk; - VkQueue vk_graphics_and_compute_queue; - VkQueue vk_present_queue; - VkDescriptorSetLayout vk_descriptor_set_layout; - vks_pipeline graphics_pipeline; - VkCommandPool vk_command_pool; - frame_data frames[MAX_FRAMES_IN_FLIGHT]; vks_buffer vertex_buffer; @@ -123,8 +117,6 @@ typedef struct state { vks_image texture_image; VkSampler vk_texture_sampler; - vks_image depth_image; - VkPolygonMode polygon_mode; Vertex *vertices; @@ -135,7 +127,6 @@ typedef struct state { char model_path[1000]; - vks_image color_image; VkDescriptorSetLayout vk_compute_descriptor_set_layout; VkPipelineLayout vk_compute_pipeline_layout; |