Skip to content

Commit

Permalink
Examples/Mandelbrot: Fix shader
Browse files Browse the repository at this point in the history
  • Loading branch information
SirLynix committed Dec 26, 2024
1 parent a28f9a1 commit 1c87be4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/sfml-mandelbrot/mandelbrot.nzsl
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ fn main(input: Input) -> Output
else
u = 0.0;

let out: Output;
out.color = palette.Sample(vec2[f32](u, 0.0));
let output: Output;
output.color = palette.Sample(vec2[f32](u, 0.0));

return out;
return output;
}

0 comments on commit 1c87be4

Please sign in to comment.