idk stuff, need to try on another machine

This commit is contained in:
2024-09-12 19:12:44 -04:00
parent b6db483189
commit 244440c38a
9 changed files with 305 additions and 232 deletions

View File

@@ -54,7 +54,7 @@ impl DepthTexture {
pub struct StorageTexture {
binding: u32,
visibility: wgpu::ShaderStages,
pub texture: wgpu::Texture,
pub buf: wgpu::Texture,
pub view: wgpu::TextureView,
pub sampler: wgpu::Sampler,
}
@@ -97,7 +97,7 @@ impl StorageTexture {
Self {
visibility,
binding,
texture,
buf: texture,
view,
sampler,
}