aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/types.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:23 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:23 +0100
commit0353181306702c40ad0fe482b5c2b159b46794a4 (patch)
tree33acc6a9e8ea4705884cf93b78cf869008f71832 /stockton-render/src/types.rs
parent664f0b0777ba96298b29f0c753d52a81cbb233f1 (diff)
refactor(all): rename some crates
Diffstat (limited to 'stockton-render/src/types.rs')
-rw-r--r--stockton-render/src/types.rs35
1 files changed, 0 insertions, 35 deletions
diff --git a/stockton-render/src/types.rs b/stockton-render/src/types.rs
deleted file mode 100644
index 03c6e37..0000000
--- a/stockton-render/src/types.rs
+++ /dev/null
@@ -1,35 +0,0 @@
-//! Convenience module to reference types that are stored in the backend's enum
-
-pub use hal::prelude::*;
-
-pub type InstanceT = <back::Backend as hal::Backend>::Instance;
-pub type DeviceT = <back::Backend as hal::Backend>::Device;
-pub type BufferT = <back::Backend as hal::Backend>::Buffer;
-pub type MemoryT = <back::Backend as hal::Backend>::Memory;
-pub type SurfaceT = <back::Backend as hal::Backend>::Surface;
-pub type SemaphoreT = <back::Backend as hal::Backend>::Semaphore;
-pub type FenceT = <back::Backend as hal::Backend>::Fence;
-pub type CommandPoolT = <back::Backend as hal::Backend>::CommandPool;
-pub type CommandBufferT = <back::Backend as hal::Backend>::CommandBuffer;
-pub type QueueT = <back::Backend as hal::Backend>::Queue;
-pub type QueueFamilyT = <back::Backend as hal::Backend>::QueueFamily;
-pub type DescriptorSetLayoutT = <back::Backend as hal::Backend>::DescriptorSetLayout;
-pub type DescriptorSetT = <back::Backend as hal::Backend>::DescriptorSet;
-pub type PipelineLayoutT = <back::Backend as hal::Backend>::PipelineLayout;
-pub type GraphicsPipelineT = <back::Backend as hal::Backend>::GraphicsPipeline;
-pub type ShaderModuleT = <back::Backend as hal::Backend>::ShaderModule;
-pub type SamplerT = <back::Backend as hal::Backend>::Sampler;
-pub type ImageT = <back::Backend as hal::Backend>::Image;
-pub type ImageViewT = <back::Backend as hal::Backend>::ImageView;
-pub type FramebufferT = <back::Backend as hal::Backend>::Framebuffer;
-pub type RenderPassT = <back::Backend as hal::Backend>::RenderPass;
-
-pub type Adapter = hal::adapter::Adapter<back::Backend>;
-pub type EntryPoint<'a> = hal::pso::EntryPoint<'a, back::Backend>;
-pub type QueueGroup = hal::queue::QueueGroup<back::Backend>;
-
-pub type DescriptorAllocator = rendy_descriptor::DescriptorAllocator<back::Backend>;
-pub type DynamicAllocator = rendy_memory::DynamicAllocator<back::Backend>;
-pub type DynamicBlock = rendy_memory::DynamicBlock<back::Backend>;
-
-pub type RDescriptorSet = rendy_descriptor::DescriptorSet<back::Backend>;