Skip to content

Commit

Permalink
bevy_pbr2: Some wgpu 0.11 / naga 0.7 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
superdump committed Nov 17, 2021
1 parent d9e19da commit 6ef9b65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelined/bevy_pbr2/src/render/pbr.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -193,11 +193,11 @@ var directional_shadow_textures: texture_depth_2d_array;
[[group(0), binding(5)]]
var directional_shadow_textures_sampler: sampler_comparison;
[[group(0), binding(6)]]
var point_lights: PointLights;
var<uniform> point_lights: PointLights;
[[group(0), binding(7)]]
var cluster_light_index_lists: ClusterLightIndexLists;
var<uniform> cluster_light_index_lists: ClusterLightIndexLists;
[[group(0), binding(8)]]
var cluster_offsets_and_counts: ClusterOffsetsAndCounts;
var<uniform> cluster_offsets_and_counts: ClusterOffsetsAndCounts;

[[group(1), binding(0)]]
var<uniform> material: StandardMaterial;
Expand Down

0 comments on commit 6ef9b65

Please sign in to comment.