Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save barbarosso/f63e8c74201f3d72dbef44db606c2296 to your computer and use it in GitHub Desktop.
Save barbarosso/f63e8c74201f3d72dbef44db606c2296 to your computer and use it in GitHub Desktop.
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