Skip to content

Commit 551d817

Browse files
committed
Fix quote characters
1 parent 8a26a53 commit 551d817

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
@@ -18,7 +18,7 @@ struct LightUniforms {
1818

1919
@group(0) @binding(8) var<uniform> u_light : LightUniforms;
2020

21-
// Wrapped diffuse: keeps dark side from going black
21+
// Wrapped diffuse: keeps "dark side" from going black
2222
fn wrappedDiffuse(n: vec3f, L: vec3f, wrap: f32) -> f32 {
2323
let d = dot(n, L); // [-1..1]
2424
return clamp((d + wrap) / (1.0 + wrap), 0.0, 1.0);

0 commit comments

Comments
 (0)