Skip to content

Commit

Permalink
Update shader.frag
Browse files Browse the repository at this point in the history
  • Loading branch information
jcponce committed Nov 2, 2024
1 parent 356e7f7 commit 36afc69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sketches/shaders/julia-mandelbrot/shader.frag
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void main(void)

float u = coord.x * 2.0 - 1.0;
float v = coord.y * 2.0 - 1.0;
const float scale = 1.0;
const float scale = 0.87;

// Make sure pixels are square
u = u / scale * iResolution.x / iResolution.y;
Expand Down

0 comments on commit 36afc69

Please sign in to comment.