codebase now lint free

This commit is contained in:
Mat Groves 2014-01-01 15:00:55 +00:00
parent 2debc70e3f
commit c6ddc833cb
22 changed files with 352 additions and 632 deletions

View file

@ -24,7 +24,7 @@ PIXI.WebGLShaderManager = function(gl)
// the final one is used for the rendering strips
//this.stripShader = new PIXI.StripShader(gl);
}
};
PIXI.WebGLShaderManager.prototype.activatePrimitiveShader = function()
@ -53,15 +53,4 @@ PIXI.WebGLShaderManager.prototype.deactivatePrimitiveShader = function()
gl.enableVertexAttribArray(this.defaultShader.aVertexPosition);
gl.enableVertexAttribArray(this.defaultShader.colorAttribute);
gl.enableVertexAttribArray(this.defaultShader.aTextureCoord);
};
PIXI.WebGLShaderManager.prototype.pushShader = function(maskData, renderSession)
{
// push a shader onto the stack..
}
PIXI.WebGLShaderManager.prototype.popShader = function(renderSession)
{
// push
}
};