Skip to content

Commit 0aaf85c

Browse files
committed
Clean up.
1 parent 7066bc0 commit 0aaf85c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/renderers/webgl/WebGLState.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function WebGLState( gl, extensions, paramThreeToGL ) {
206206
var currentStencilFunc = null;
207207
var currentStencilRef = null;
208208
var currentStencilFuncMask = null;
209-
var currentStencilFail = null;
209+
var currentStencilFail = null;
210210
var currentStencilZFail = null;
211211
var currentStencilZPass = null;
212212
var currentStencilClear = null;
@@ -244,10 +244,10 @@ function WebGLState( gl, extensions, paramThreeToGL ) {
244244
currentStencilRef !== stencilRef ||
245245
currentStencilFuncMask !== stencilMask ) {
246246

247-
gl.stencilFunc( stencilFunc, stencilRef, stencilMask );
247+
gl.stencilFunc( stencilFunc, stencilRef, stencilMask );
248248

249249
currentStencilFunc = stencilFunc;
250-
currentStencilRef = stencilRef;
250+
currentStencilRef = stencilRef;
251251
currentStencilFuncMask = stencilMask;
252252

253253
}
@@ -260,9 +260,9 @@ function WebGLState( gl, extensions, paramThreeToGL ) {
260260
currentStencilZFail !== stencilZFail ||
261261
currentStencilZPass !== stencilZPass ) {
262262

263-
gl.stencilOp( stencilFail, stencilZFail, stencilZPass );
263+
gl.stencilOp( stencilFail, stencilZFail, stencilZPass );
264264

265-
currentStencilFail = stencilFail;
265+
currentStencilFail = stencilFail;
266266
currentStencilZFail = stencilZFail;
267267
currentStencilZPass = stencilZPass;
268268

0 commit comments

Comments
 (0)