diff --git a/src/render/texture.rs b/src/render/texture.rs index a5416b1..123e8d6 100644 --- a/src/render/texture.rs +++ b/src/render/texture.rs @@ -35,6 +35,7 @@ impl Default for TextureAttributes { } } +#[derive(Debug)] pub struct TextureBuilder { pub attributes: TextureAttributes, } @@ -102,6 +103,7 @@ impl TextureBuilder { } } +#[derive(Debug)] pub struct Texture { pub attributes: TextureAttributes, pub texture: wgpu::Texture,