summaryrefslogtreecommitdiff
path: root/src/vk/device.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vk/device.hpp')
-rw-r--r--src/vk/device.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/vk/device.hpp b/src/vk/device.hpp
index 56bd6e4..cc5df82 100644
--- a/src/vk/device.hpp
+++ b/src/vk/device.hpp
@@ -36,8 +36,11 @@ struct Device
public:
VkDevice device;
VkPhysicalDevice physical_device;
- VkShaderModule vert_shader_module;
- VkShaderModule frag_shader_module;
+
+ VkShaderModule vert3d_shader_module;
+ VkShaderModule frag3d_shader_module;
+ VkShaderModule vert2d_shader_module;
+ VkShaderModule frag2d_shader_module;
bool with_swapchain;