summaryrefslogtreecommitdiff
path: root/src/vk/device.hpp
diff options
context:
space:
mode:
authorFrederico Linhares <fred@linhares.blue>2023-10-09 14:46:09 -0300
committerFrederico Linhares <fred@linhares.blue>2023-10-09 15:58:14 -0300
commitba447583c74d44c6b07c5409918207157f921efe (patch)
tree56cd1c36a8e77540136c8871eb3b94f0adf37139 /src/vk/device.hpp
parent8fa221cb60c19638d4ad0833965fee605593eea3 (diff)
feat Render sprite in a 3D position
Diffstat (limited to 'src/vk/device.hpp')
-rw-r--r--src/vk/device.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vk/device.hpp b/src/vk/device.hpp
index 9fcec20..36fc08d 100644
--- a/src/vk/device.hpp
+++ b/src/vk/device.hpp
@@ -1,5 +1,5 @@
/*
- * Copyright 2022 Frederico de Oliveira Linhares
+ * Copyright 2022-2023 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -37,6 +37,8 @@ public:
VkDevice device;
VkPhysicalDevice physical_device;
+ VkShaderModule vert_sprite_3d_shader_module;
+ VkShaderModule frag_sprite_3d_shader_module;
VkShaderModule vert3d_shader_module;
VkShaderModule frag3d_shader_module;
VkShaderModule vert2d_solid_shader_module;