Skip to content

Commit

Permalink
graphics: Debug impl for Uniform*
Browse files Browse the repository at this point in the history
  • Loading branch information
not-fl3 committed Jul 2, 2024
1 parent 6ea5c3a commit 07b614a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/graphics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ impl UniformType {
}
}

#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct UniformDesc {
pub name: String,
pub uniform_type: UniformType,
pub array_count: usize,
}

#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct UniformBlockLayout {
pub uniforms: Vec<UniformDesc>,
}
Expand Down

0 comments on commit 07b614a

Please sign in to comment.