A bit more cleanup in preparation for the reformulation

This commit is contained in:
Rezmason
2022-09-11 23:48:43 -07:00
parent 0a5daa696a
commit 0d1d661401
4 changed files with 3 additions and 12 deletions

View File

@@ -17,7 +17,6 @@ uniform bool showDebugView;
uniform bool volumetric;
varying vec2 vUV;
varying vec3 vChannel;
varying vec4 vShine, vSymbol;
varying float vDepth;
@@ -104,7 +103,7 @@ void main() {
1.
);
} else {
gl_FragColor = vec4(vChannel * brightness * alpha, 1.);
gl_FragColor = vec4(brightness * alpha, 0., 0., 1.);
}
}