Skip to content

Commit

Permalink
fix shader
Browse files Browse the repository at this point in the history
  • Loading branch information
IceSentry committed Jan 15, 2023
1 parent 15f4985 commit f3e8ae6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/bevy_pbr/src/render/wireframe.wgsl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
@fragment
fn fragment() -> @location(0) vec4<f32> {
fn fragment(
#import bevy_pbr::mesh_vertex_output
) -> @location(0) vec4<f32> {
return vec4<f32>(1.0, 1.0, 1.0, 1.0);
}

0 comments on commit f3e8ae6

Please sign in to comment.