Jshinted code

This commit is contained in:
Mat Groves 2014-01-24 00:08:05 +00:00
parent b45c70574d
commit f127cfe1ef
8 changed files with 37 additions and 79 deletions

View file

@ -109,18 +109,18 @@ PIXI.WebGLShaderManager.prototype.deactivatePrimitiveShader = function()
this.setAttribs(this.defaultShader.attributes);
};
PIXI.WebGLShaderManager.prototype.destroy = function(gl)
PIXI.WebGLShaderManager.prototype.destroy = function()
{
this.attribState = null;
this.tempAttribState = null;
this.primitiveShader.destroy()
this.primitiveShader.destroy();
this.defaultShader.destroy()
this.defaultShader.destroy();
this.fastShader.destroy()
this.fastShader.destroy();
this.gl = null
this.gl = null;
};