summaryrefslogtreecommitdiff
path: root/src/vk/graphics_pipeline_3d.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vk/graphics_pipeline_3d.hpp')
-rw-r--r--src/vk/graphics_pipeline_3d.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/vk/graphics_pipeline_3d.hpp b/src/vk/graphics_pipeline_3d.hpp
index d174b6e..af09d28 100644
--- a/src/vk/graphics_pipeline_3d.hpp
+++ b/src/vk/graphics_pipeline_3d.hpp
@@ -20,10 +20,8 @@
#include <memory>
#include <unordered_map>
-#include "../command.hpp"
#include "core.hpp"
#include "command_pool.hpp"
-#include "uniform_buffer.hpp"
#include "view_3d.hpp"
namespace VK
@@ -36,13 +34,6 @@ struct GraphicsPipeline3D
VkDeviceMemory depth_image_memory;
VkImageView depth_image_view;
- // FIXME: if this vector get resized, it will cause a segmentation fault!
- std::vector<UniformBuffer> ub_world_vert;
- std::vector<UniformBuffer> ub_world_frag;
-
- VkDescriptorPool descriptor_pool;
- std::vector<VkDescriptorSet> descriptor_sets_world;
-
std::vector<VkFramebuffer> swapchain_framebuffers;
VkPipeline graphic_pipeline;