Skip to content

Commit 2baf83e

Browse files
committed
missed another
1 parent eb964cf commit 2baf83e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_render/src/render_resource/pipeline_cache.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ impl ShaderCache {
169169
let mut shader_defs = shader_defs.to_vec();
170170
#[cfg(feature = "webgl")]
171171
{
172-
shader_defs.push(String::from("NO_ARRAY_TEXTURES_SUPPORT").into());
173-
shader_defs.push(String::from("SIXTEEN_BYTE_ALIGNMENT").into());
172+
shader_defs.push("NO_ARRAY_TEXTURES_SUPPORT".into());
173+
shader_defs.push("SIXTEEN_BYTE_ALIGNMENT".into());
174174
}
175175

176176
// 3 is the value from CLUSTERED_FORWARD_STORAGE_BUFFER_COUNT declared in bevy_pbr

0 commit comments

Comments
 (0)