diff options
Diffstat (limited to 'src/core.hpp')
-rw-r--r-- | src/core.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core.hpp b/src/core.hpp index d9e68e8..1f75279 100644 --- a/src/core.hpp +++ b/src/core.hpp @@ -42,7 +42,9 @@ #include "log.hpp" #include "vk/device.hpp" -#include "vk/graphics_pipeline.hpp" +#include "vk/graphics_pipeline_3d.hpp" +#include "vk/graphics_pipeline_2d.hpp" +#include "vk/renderer.hpp" #include "vk/swapchain.hpp" extern std::random_device random_seed; @@ -103,7 +105,9 @@ struct cg_sCore std::vector<VK::Device> vk_devices; VK::Device *vk_device_with_swapchain; VK::Swapchain *vk_swapchain; - VK::GraphicsPipeline *vk_graphics_pipeline; + VK::GraphicsPipeline3D *vk_graphics_pipeline_3d; + VK::GraphicsPipeline2D *vk_graphics_pipeline_2d; + VK::Renderer *vk_renderer; bool quit_game; }; |