We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb964cf commit 2baf83eCopy full SHA for 2baf83e
crates/bevy_render/src/render_resource/pipeline_cache.rs
@@ -169,8 +169,8 @@ impl ShaderCache {
169
let mut shader_defs = shader_defs.to_vec();
170
#[cfg(feature = "webgl")]
171
{
172
- shader_defs.push(String::from("NO_ARRAY_TEXTURES_SUPPORT").into());
173
- shader_defs.push(String::from("SIXTEEN_BYTE_ALIGNMENT").into());
+ shader_defs.push("NO_ARRAY_TEXTURES_SUPPORT".into());
+ shader_defs.push("SIXTEEN_BYTE_ALIGNMENT".into());
174
}
175
176
// 3 is the value from CLUSTERED_FORWARD_STORAGE_BUFFER_COUNT declared in bevy_pbr
0 commit comments