alpha update

added new function Texture.fromCanvas
docs updated
photonstorm morph example added
photonstorm balls example added
examples renamed
This commit is contained in:
Mat Groves 2013-03-02 20:49:12 +00:00
parent 46174cc0ca
commit b8d849032c
78 changed files with 1354 additions and 301 deletions

View file

@ -352,7 +352,7 @@ PIXI.WebGLRenderer.prototype.updateTexture = function(texture)
{
gl.bindTexture(gl.TEXTURE_2D, texture._glTexture);
gl.pixelStorei(gl.UNPACK_PREMULTIPLY_ALPHA_WEBGL, true);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, texture.image);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, texture.source);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);