bevy/crates/bevy_pbr/src/render/wireframe.wgsl

6 lines
170 B
WebGPU Shading Language
Raw Normal View History

#import bevy_pbr::mesh_vertex_output MeshVertexOutput
@fragment
fn fragment(in: MeshVertexOutput) -> @location(0) vec4<f32> {
return vec4<f32>(1.0, 1.0, 1.0, 1.0);
}