mirror of
https://github.com/konvajs/konva.git
synced 2025-11-24 16:53:06 +08:00
added cache perf test. refactored Star.js to better incorporate getters
This commit is contained in:
27
test/setStats.js
Normal file
27
test/setStats.js
Normal file
@@ -0,0 +1,27 @@
|
||||
window.requestAnimFrame = (function(callback){
|
||||
return window.requestAnimationFrame ||
|
||||
window.webkitRequestAnimationFrame ||
|
||||
window.mozRequestAnimationFrame ||
|
||||
window.oRequestAnimationFrame ||
|
||||
window.msRequestAnimationFrame ||
|
||||
function(callback){
|
||||
window.setTimeout(callback, 1000 / 30);
|
||||
};
|
||||
})();
|
||||
|
||||
stats = new Stats();
|
||||
stats.setMode(0);
|
||||
stats.domElement.style.position = 'fixed';
|
||||
stats.domElement.style.left = '0px';
|
||||
stats.domElement.style.top = '0px';
|
||||
document.body.appendChild(stats.domElement);
|
||||
|
||||
function setStats() {
|
||||
stats.begin();
|
||||
requestAnimFrame(function(){
|
||||
stats.end();
|
||||
setStats();
|
||||
});
|
||||
}
|
||||
|
||||
setStats();
|
||||
Reference in New Issue
Block a user