Bug fix for webGLGraphics

indices not being cleared when clear() called
This commit is contained in:
Mat Groves 2013-06-23 14:59:56 +01:00
parent 5ce7074dc1
commit e46b57b980
17 changed files with 55 additions and 2 deletions

View file

@ -2894,6 +2894,8 @@ PIXI.WebGLGraphics.renderGraphics = function(graphics, projection)
graphics._webGL.lastIndex = 0;
graphics._webGL.points = [];
graphics._webGL.indices = [];
}
PIXI.WebGLGraphics.updateGraphics(graphics);