Skip to content

Commit 2dd1ffc

Browse files
committed
Fix quotes
1 parent 551d817 commit 2dd1ffc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

webgpu/shaders/light.wgsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fn lightCalcBrightnessScientific(p: vec3f, normal: vec3f) -> vec2f {
4444
// Very gentle spec (Blinn-Phong), only when facing light
4545
var spec = 0.0;
4646
if (u_light.shininess > 0.0 && u_light.specular > 0.0) {
47-
// Gate spec by a non-wrapped facing term to avoid highlights on back side
47+
// Gate spec by a non-wrapped facing term to avoid highlights on "back side"
4848
let facingK = max(dot(n, Lk), 0.0);
4949
let facingF = max(dot(n, Lf), 0.0);
5050

0 commit comments

Comments
 (0)