-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathrequestAnimationFrame.js
75 lines (67 loc) · 2.61 KB
/
requestAnimationFrame.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*global define*/
define([
'./defined'
], function(
defined) {
"use strict";
var implementation = window.requestAnimationFrame;
(function() {
// look for vendor prefixed function
if (!defined(implementation)) {
var vendors = ['webkit', 'moz', 'ms', 'o'];
var i = 0;
var len = vendors.length;
while (i < len && !defined(implementation)) {
implementation = window[vendors[i] + 'RequestAnimationFrame'];
++i;
}
}
// build an implementation based on setTimeout
if (!defined(implementation)) {
var lastFrameTime = 0;
implementation = function(callback) {
var currentTime = Date.now();
// schedule the callback to target 60fps, 16.7ms per frame,
// accounting for the time taken by the callback
var delay = Math.max(16 - (currentTime - lastFrameTime), 0);
lastFrameTime = currentTime + delay;
return setTimeout(function() {
callback(lastFrameTime);
}, delay);
};
}
})();
/**
* A browser-independent function to request a new animation frame. This is used to create
* an application's draw loop as shown in the example below.
*
* @exports requestAnimationFrame
*
* @param {requestAnimationFrame~Callback} callback The function to call when the next frame should be drawn.
* @returns An ID that can be passed to {@link cancelAnimationFrame} to cancel the request.
*
* @see {@link http://www.w3.org/TR/animation-timing/#the-WindowAnimationTiming-interface|The WindowAnimationTiming interface}
*
* @example
* // Create a draw loop using requestAnimationFrame. The
* // tick callback function is called for every animation frame.
* function tick() {
* scene.render();
* Cesium.requestAnimationFrame(tick);
* }
* tick();
*/
var requestAnimationFrame = function(callback) {
// we need this extra wrapper function because the native requestAnimationFrame
// functions must be invoked on the global scope (window), which is not the case
// if invoked as Cesium.requestAnimationFrame(callback)
return implementation(callback);
};
/**
* A function that will be called when the next frame should be drawn.
* @callback requestAnimationFrame~Callback
*
* @param {Number} timestamp A timestamp for the frame, in milliseconds.
*/
return requestAnimationFrame;
});