Skip to content

Commit

Permalink
glsl-out: Fix storage format for Rgba8Unorm
Browse files Browse the repository at this point in the history
  • Loading branch information
JCapucho authored and jimblandy committed May 28, 2022
1 parent f035854 commit 4cd997a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/back/glsl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3347,7 +3347,7 @@ const fn glsl_storage_format(format: crate::StorageFormat) -> &'static str {
Sf::Rg16Uint => "rg16ui",
Sf::Rg16Sint => "rg16i",
Sf::Rg16Float => "rg16f",
Sf::Rgba8Unorm => "rgba8ui",
Sf::Rgba8Unorm => "rgba8",
Sf::Rgba8Snorm => "rgba8_snorm",
Sf::Rgba8Uint => "rgba8ui",
Sf::Rgba8Sint => "rgba8i",
Expand Down

0 comments on commit 4cd997a

Please sign in to comment.