Created
May 5, 2017 10:49
-
-
Save barbarosso/f63e8c74201f3d72dbef44db606c2296 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(newHeight !== this.height || newWidth !== this.width) | |
{ | |
gl.texImage2D(gl.TEXTURE_2D, 0, this.format, this.format, this.type, source); | |
} | |
else | |
{ | |
gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, this.format, this.type, source); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment