summaryrefslogtreecommitdiff
path: root/src/vk/graphics_pipeline_2d_wired.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vk/graphics_pipeline_2d_wired.hpp')
-rw-r--r--src/vk/graphics_pipeline_2d_wired.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vk/graphics_pipeline_2d_wired.hpp b/src/vk/graphics_pipeline_2d_wired.hpp
index e6c40de..aa975a8 100644
--- a/src/vk/graphics_pipeline_2d_wired.hpp
+++ b/src/vk/graphics_pipeline_2d_wired.hpp
@@ -29,9 +29,18 @@ namespace VK
struct GraphicsPipeline2DWired
{
+ QueueFamily *queue_family;
+
std::vector<VkFramebuffer> swapchain_framebuffers;
VkPipeline graphic_pipeline;
+ DestinationBuffer *index_buffer;
+ std::vector<UniformBuffer> ub_rectangles;
+ std::vector<UniformBuffer> ub_rectangle_colors;
+
+ VkDescriptorPool descriptor_pool;
+ std::vector<VkDescriptorSet> descriptor_sets;
+
GraphicsPipeline2DWired();
~GraphicsPipeline2DWired();