Skip to content

Commit

Permalink
Fix wrong indentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Swordfish90 committed Sep 28, 2024
1 parent fc71a17 commit 54297e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/shaders/cut2/cut2_pass_1.frag.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ Pattern pattern(Pixels pixels, lowp vec4 edgeWeights, bool triangle, lowp vec2 p
result.midPoints = midPoints.xxy;
result.baseSharpness = vec3(1.0, 1.0, float(!triangle));
result.pixels = Pixels(
pixels.p0,
pixels.p1,
triangle ? pixels.p0 : pixels.p2,
triangle ? pixels.p2 : pixels.p3
pixels.p0,
pixels.p1,
triangle ? pixels.p0 : pixels.p2,
triangle ? pixels.p2 : pixels.p3
);

return result;
Expand Down

0 comments on commit 54297e9

Please sign in to comment.