I have played with pixi.js a couple of days and faced a weird limitation. It looks like there's a limitation on the number of graphics primitives, but can't find anything about it in here or in docs. Here's a repro code: stage = new PIXI.Stage(0); var ts = 5, w = 160, h = 160; renderer = PIXI.autoDetectRenderer(w * ts, h * ts); document.getElementById('content').appendChild(renderer.view); graphics = new PIXI.Graphics(); graphics.drawRect(0, 0, w * ts,