aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/types.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:21 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:21 +0100
commit6ab78e3c14acfa7b9d29c9f9e36ffed1ab9e7c43 (patch)
tree09404d55f21f494ffdbcfd276701d3100b0149fa /stockton-render/src/types.rs
parent509c1f2b38d0287ec027b8671cb4f6bc68bc9e66 (diff)
fix(render): destroy shader modules properly
Diffstat (limited to 'stockton-render/src/types.rs')
-rw-r--r--stockton-render/src/types.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/stockton-render/src/types.rs b/stockton-render/src/types.rs
index 7bd597b..a0f242c 100644
--- a/stockton-render/src/types.rs
+++ b/stockton-render/src/types.rs
@@ -30,6 +30,7 @@ pub type DescriptorPool = <back::Backend as hal::Backend>::DescriptorPool;
pub type DescriptorSet = <back::Backend as hal::Backend>::DescriptorSet;
pub type PipelineLayout = <back::Backend as hal::Backend>::PipelineLayout;
pub type GraphicsPipeline = <back::Backend as hal::Backend>::GraphicsPipeline;
+pub type ShaderModule = <back::Backend as hal::Backend>::ShaderModule;
pub type Sampler = <back::Backend as hal::Backend>::Sampler;
pub type Image = <back::Backend as hal::Backend>::Image;
pub type ImageView = <back::Backend as hal::Backend>::ImageView;