summaryrefslogtreecommitdiff
path: root/src/core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.hpp')
-rw-r--r--src/core.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core.hpp b/src/core.hpp
index 414173e..c7dbceb 100644
--- a/src/core.hpp
+++ b/src/core.hpp
@@ -42,6 +42,8 @@
#include "log.hpp"
#include "vk/device.hpp"
+#include "vk/graphics_pipeline_3d_layout.hpp"
+#include "vk/graphics_pipeline_2d_layout.hpp"
#include "vk/graphics_pipeline_3d.hpp"
#include "vk/graphics_pipeline_2d.hpp"
#include "vk/renderer.hpp"
@@ -105,10 +107,12 @@ struct cg_sCore
std::vector<VK::Device> vk_devices;
VK::Device *vk_device_with_swapchain;
VK::Swapchain *vk_swapchain;
- VkRenderPass vk_render_pass_3d;
- VkRenderPass vk_render_pass_2d;
+
+ VK::GraphicsPipeline3DLayout *vk_graphics_pipeline_3d_layout;
+ VK::GraphicsPipeline2DLayout *vk_graphics_pipeline_2d_layout;
VK::GraphicsPipeline3D *vk_graphics_pipeline_3d;
VK::GraphicsPipeline2D *vk_graphics_pipeline_2d;
+
VK::Renderer *vk_renderer;
bool quit_game;