diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
commit | e8126750633fd9ed3e682a2c889740a1f51a86f7 (patch) | |
tree | d2da548230f9ff3703fbf7f60f52f575f43d360d /stockton-render/src/types.rs | |
parent | 6793abcd3bb054ff4c6dc0e6b97a76d463730deb (diff) |
feat(render): rendy-memory for textures
unfortunately this involves downgrading gfx-hal
Diffstat (limited to 'stockton-render/src/types.rs')
-rw-r--r-- | stockton-render/src/types.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stockton-render/src/types.rs b/stockton-render/src/types.rs index 56a71b7..f6187c2 100644 --- a/stockton-render/src/types.rs +++ b/stockton-render/src/types.rs @@ -41,3 +41,6 @@ pub type RenderPass = <back::Backend as hal::Backend>::RenderPass; pub type Adapter = hal::adapter::Adapter<back::Backend>; pub type QueueGroup = hal::queue::QueueGroup<back::Backend>; + +pub type DynamicAllocator = rendy_memory::DynamicAllocator<back::Backend>; +pub type DynamicBlock = rendy_memory::DynamicBlock<back::Backend>;
\ No newline at end of file |