We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You could try using StageGL (GPU based) with CreateJS
this.stage = new createjs.StageGL("canvas");
and then you need to cache() the rectangles so they are bitmaps
rect.cache(0, 0, size, size); this.stage.addChild(rect);