FastCanvas od Adobe (opensource)
Pokud mate HTML5 hru a bezi treba 16fps, tak tohle ji zakceleruje na 60fps v ramci Phonegapu:
https://github.com/phonegap/phonegap-fast-canvas-plugin
(Android only)
var canvas = FastCanvas.create(); // specific to FastCanvas
var context = canvas.getContext("2d");
var myImage = FastCanvas.createImage(); // specific to FastCanvas
myImage.onload = function(){
context.translate(100, 100);
context.rotate(Math.PI);
context.drawImage(myImage, 0, 0);
FastCanvas.render(); // specific to FastCanvas
}
myImage.src = "images/myImage.jpg";