Skip to content

Commit

Permalink
Fix missing emptyTexture2darray definitioin in WebGLUniforms.js
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirox committed Mar 5, 2019
1 parent 5ab8129 commit 7b4cfba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/renderers/webgl/WebGLUniforms.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@

import { CubeTexture } from '../../textures/CubeTexture.js';
import { Texture } from '../../textures/Texture.js';
import { DataTexture2DArray } from '../../textures/DataTexture2DArray.js';
import { DataTexture3D } from '../../textures/DataTexture3D.js';

var emptyTexture = new Texture();
var emptyTexture2darray = new DataTexture2DArray();
var emptyTexture3d = new DataTexture3D();
var emptyCubeTexture = new CubeTexture();

Expand Down

0 comments on commit 7b4cfba

Please sign in to comment.