Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix animation: shadow and wireframe support (bevyengine#4367)
# Objective Animation with shadows crashes with: ``` thread 'main' panicked at 'wgpu error: Validation Error Caused by: In Device::create_render_pipeline note: label = `shadow_pipeline` error matching VERTEX shader requirements against the pipeline shader global ResourceBinding { group: 1, binding: 1 } is not available in the layout pipeline layout visibility flags don't include the shader stage ``` Animation with wireframe crashes with: ``` thread 'main' panicked at 'wgpu error: Validation Error Caused by: In Device::create_render_pipeline note: label = `opaque_mesh_pipeline` error matching VERTEX shader requirements against the pipeline shader global ResourceBinding { group: 2, binding: 0 } is not available in the layout pipeline layout binding is missing from the pipeline layout ``` ## Solution - Fix the bindings
- Loading branch information