Browse Source

Clean up.

Mr.doob 8 years ago
parent
commit
944d0d200c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/textures/DataTexture.js

+ 1 - 1
src/textures/DataTexture.js

@@ -14,8 +14,8 @@ function DataTexture( data, width, height, format, type, mapping, wrapS, wrapT,
 	this.magFilter = magFilter !== undefined ? magFilter : NearestFilter;
 	this.minFilter = minFilter !== undefined ? minFilter : NearestFilter;
 
-	this.flipY = false;
 	this.generateMipmaps  = false;
+	this.flipY = false;
 	this.unpackAlignment = 1;
 
 }