Skip to content

Commit 12f00a3

Browse files
fix: syntax errors in shaders (#405)
1 parent 6bed3f4 commit 12f00a3

5 files changed

+48
-48
lines changed

src/shaders/ACESFilmicToneMappingShader.ts

+35-35
Original file line numberDiff line numberDiff line change
@@ -23,68 +23,68 @@ export const ACESFilmicToneMappingShader: IACESFilmicToneMappingShader = {
2323
},
2424

2525
vertexShader: /* glsl */ `
26-
varying vec2 vUv;,
26+
varying vec2 vUv;
2727
28-
void main() {,
28+
void main() {
2929
30-
vUv = uv;,
31-
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );,
30+
vUv = uv;
31+
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
3232
33-
},
33+
}
3434
`,
3535
fragmentShader: /* glsl */ `
36-
#define saturate(a) clamp( a, 0.0, 1.0 ),
36+
#define saturate(a) clamp( a, 0.0, 1.0 )
3737
38-
uniform sampler2D tDiffuse;,
38+
uniform sampler2D tDiffuse;
3939
40-
uniform float exposure;,
40+
uniform float exposure;
4141
42-
varying vec2 vUv;,
42+
varying vec2 vUv;
4343
44-
vec3 RRTAndODTFit( vec3 v ) {,
44+
vec3 RRTAndODTFit( vec3 v ) {
4545
46-
vec3 a = v * ( v + 0.0245786 ) - 0.000090537;,
47-
vec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081;,
48-
return a / b;,
46+
vec3 a = v * ( v + 0.0245786 ) - 0.000090537;
47+
vec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081;
48+
return a / b;
4949
50-
},
50+
}
5151
52-
vec3 ACESFilmicToneMapping( vec3 color ) {,
52+
vec3 ACESFilmicToneMapping( vec3 color ) {
5353
5454
// sRGB => XYZ => D65_2_D60 => AP1 => RRT_SAT
55-
const mat3 ACESInputMat = mat3(,
56-
vec3( 0.59719, 0.07600, 0.02840 ),, // transposed from source
57-
vec3( 0.35458, 0.90834, 0.13383 ),,
58-
vec3( 0.04823, 0.01566, 0.83777 ),
59-
);,
55+
const mat3 ACESInputMat = mat3(
56+
vec3( 0.59719, 0.07600, 0.02840 ), // transposed from source
57+
vec3( 0.35458, 0.90834, 0.13383 ),
58+
vec3( 0.04823, 0.01566, 0.83777 )
59+
);
6060
6161
// ODT_SAT => XYZ => D60_2_D65 => sRGB
62-
const mat3 ACESOutputMat = mat3(,
63-
vec3( 1.60475, -0.10208, -0.00327 ),, // transposed from source
64-
vec3( -0.53108, 1.10813, -0.07276 ),,
65-
vec3( -0.07367, -0.00605, 1.07602 ),
66-
);,
62+
const mat3 ACESOutputMat = mat3(
63+
vec3( 1.60475, -0.10208, -0.00327 ), // transposed from source
64+
vec3( -0.53108, 1.10813, -0.07276 ),
65+
vec3( -0.07367, -0.00605, 1.07602 )
66+
);
6767
68-
color = ACESInputMat * color;,
68+
color = ACESInputMat * color;
6969
7070
// Apply RRT and ODT
71-
color = RRTAndODTFit( color );,
71+
color = RRTAndODTFit( color );
7272
73-
color = ACESOutputMat * color;,
73+
color = ACESOutputMat * color;
7474
7575
// Clamp to [0, 1]
76-
return saturate( color );,
76+
return saturate( color );
7777
78-
},
78+
}
7979
80-
void main() {,
80+
void main() {
8181
82-
vec4 tex = texture2D( tDiffuse, vUv );,
82+
vec4 tex = texture2D( tDiffuse, vUv );
8383
84-
tex.rgb *= exposure / 0.6;, // pre-exposed, outside of the tone mapping function
84+
tex.rgb *= exposure / 0.6; // pre-exposed, outside of the tone mapping function
8585
86-
gl_FragColor = vec4( ACESFilmicToneMapping( tex.rgb ), tex.a );,
86+
gl_FragColor = vec4( ACESFilmicToneMapping( tex.rgb ), tex.a );
8787
88-
},
88+
}
8989
`,
9090
}

src/shaders/FXAAShader.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const FXAAShader = {
5555
// contributors may be used to endorse or promote products derived
5656
// from this software without specific prior written permission.
5757
//
58-
"// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AS IS AND ANY",
58+
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AS IS AND ANY
5959
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
6060
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
6161
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
@@ -129,7 +129,7 @@ export const FXAAShader = {
129129
/*--------------------------------------------------------------------------*/
130130
#ifndef FXAA_EARLY_EXIT
131131
//
132-
" // Controls algorithms early exit path.",
132+
// Controls algorithms early exit path.
133133
// On PS3 turning this ON adds 2 cycles to the shader.
134134
// On 360 turning this OFF adds 10ths of a millisecond to the shader.
135135
// Turning this off on console will result in a more blurry image.
@@ -146,9 +146,9 @@ export const FXAAShader = {
146146
// Only valid for PC OpenGL currently.
147147
// Probably will not work when FXAA_GREEN_AS_LUMA = 1.
148148
//
149-
" // 1 = Use discard on pixels which dont need AA.",
149+
// 1 = Use discard on pixels which dont need AA.
150150
// For APIs which enable concurrent TEX+ROP from same surface.
151-
" // 0 = Return unchanged color on pixels which dont need AA.",
151+
// 0 = Return unchanged color on pixels which dont need AA.
152152
//
153153
#define FXAA_DISCARD 0
154154
#endif

src/shaders/GodRaysShader.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const GodRaysGenerateShader = {
123123
// Unrolling didnt do much on my hardware (ATI Mobility Radeon 3450),
124124
// so ive just left the loop
125125
126-
"for ( float i = 0.0; i < TAPS_PER_PASS; i += 1.0 ) {",
126+
for ( float i = 0.0; i < TAPS_PER_PASS; i += 1.0 ) {
127127
128128
// Accumulate samples, making sure we dont walk past the light source.
129129
@@ -133,10 +133,10 @@ export const GodRaysGenerateShader = {
133133
// sun is to the left, right or bottom of screen as these cases are
134134
// not specifically handled.
135135
136-
" col += ( i <= iters && uv.y < 1.0 ? texture2D( tInput, uv ).r : 0.0 );",
137-
" uv += stepv;",
136+
col += ( i <= iters && uv.y < 1.0 ? texture2D( tInput, uv ).r : 0.0 );
137+
uv += stepv;
138138
139-
"}",
139+
}
140140
*/
141141
142142
// Unrolling loop manually makes it work in ANGLE

src/shaders/ParallaxShader.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const ParallaxShader = {
5656
float initialHeight = texture2D( bumpMap, vUv ).r;
5757
5858
// No Offset Limitting: messy, floating output at grazing angles.
59-
//"vec2 texCoordOffset = parallaxScale * V.xy / V.z * initialHeight;",
59+
//vec2 texCoordOffset = parallaxScale * V.xy / V.z * initialHeight;
6060
6161
// Offset Limiting
6262
vec2 texCoordOffset = parallaxScale * V.xy * initialHeight;

src/shaders/VignetteShader.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ export const VignetteShader = {
4242
// alternative version from glfx.js
4343
// this one makes more "dusty" look (as opposed to "burned")
4444
45-
" vec4 color = texture2D( tDiffuse, vUv );",
46-
" float dist = distance( vUv, vec2( 0.5 ) );",
47-
" color.rgb *= smoothstep( 0.8, offset * 0.799, dist *( darkness + offset ) );",
48-
" gl_FragColor = color;",
45+
vec4 color = texture2D( tDiffuse, vUv );
46+
float dist = distance( vUv, vec2( 0.5 ) );
47+
color.rgb *= smoothstep( 0.8, offset * 0.799, dist *( darkness + offset ) );
48+
gl_FragColor = color;
4949
*/
5050
5151
}

0 commit comments

Comments
 (0)