Skip to content

Commit

Permalink
fix: line break at end of file
Browse files Browse the repository at this point in the history
  • Loading branch information
Manfred Cheung committed Sep 22, 2023
1 parent ce854da commit a5a70e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/shaders/postprocess/blend.fs.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ void main() {
if(fragColor.a == 0.) {
fragColor = texture(uGlowTexture, vUv).rgba;
}
}
}
2 changes: 1 addition & 1 deletion src/renderer/shaders/postprocess/blur.fs.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ void main() {
fragColor += texture(uFrameTexture, vUv + (uDirection * texSize * blurOffsets[i])) * blurWeights[i];
fragColor += texture(uFrameTexture, vUv - (uDirection * texSize * blurOffsets[i])) * blurWeights[i];
}
}
}
2 changes: 1 addition & 1 deletion src/renderer/shaders/postprocess/resample.fs.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ uniform sampler2D uFrameTexture;

void main() {
fragColor = texture(uFrameTexture, vUv);
}
}

0 comments on commit a5a70e0

Please sign in to comment.