Skip to content

Commit

Permalink
missed another
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Oct 21, 2022
1 parent 22bd321 commit d5b9cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_render/src/render_resource/pipeline_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ impl ShaderCache {
Entry::Vacant(entry) => {
let mut shader_defs = shader_defs.to_vec();
#[cfg(feature = "webgl")]
shader_defs.push(String::from("NO_ARRAY_TEXTURES_SUPPORT").into());
shader_defs.push("NO_ARRAY_TEXTURES_SUPPORT".into());

// 3 is the value from CLUSTERED_FORWARD_STORAGE_BUFFER_COUNT declared in bevy_pbr
// Using the value directly here to avoid the cyclic dependency
Expand Down

0 comments on commit d5b9cfd

Please sign in to comment.