Skip to content

Commit

Permalink
Update color of vertices
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Nov 21, 2024
1 parent 244b9be commit adfeba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/2024-10-30/src/render/shaders/vertices.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ fn vertex(in: VertexInput) -> VertexOutput {

@fragment
fn fragment(in: VertexOutput) -> @location(0) vec4<f32> {
var color = vec4(0.0, 0.0, 1.0, 1.0);
var color = vec4(0.5, 0.5, 0.5, 1.0);
return color;
}

0 comments on commit adfeba7

Please sign in to comment.