2011-11-07 21:29:37 +00:00
|
|
|
/**
|
|
|
|
* dat-gui JavaScript Controller Library
|
|
|
|
* http://code.google.com/p/dat-gui
|
|
|
|
*
|
|
|
|
* Copyright 2011 Data Arts Team, Google Creative Lab
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
define([
|
|
|
|
], function() {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* requirejs version of Paul Irish's RequestAnimationFrame
|
|
|
|
* http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
|
|
|
*/
|
|
|
|
|
2014-09-16 10:24:10 +00:00
|
|
|
return window.requestAnimationFrame ||
|
|
|
|
window.webkitRequestAnimationFrame ||
|
2011-11-07 21:29:37 +00:00
|
|
|
window.mozRequestAnimationFrame ||
|
|
|
|
window.oRequestAnimationFrame ||
|
|
|
|
window.msRequestAnimationFrame ||
|
|
|
|
function(callback, element) {
|
|
|
|
|
|
|
|
window.setTimeout(callback, 1000 / 60);
|
|
|
|
|
|
|
|
};
|
2014-09-16 10:24:10 +00:00
|
|
|
});
|