Home | History | Annotate | Download | only in embenchen

Lines Matching full:requestanimationframe

1450           Module.printErr('Looks like you are rendering without using requestAnimationFrame for the main loop. You should use 0 for the frame rate in emscripten_set_main_loop in order to use requestAnimationFrame, as that can greatly improve your frame rates!');
1492 Browser.requestAnimationFrame(Browser.mainLoop.runner);
5497 },requestAnimationFrame:function requestAnimationFrame(func) {
5501 if (!window.requestAnimationFrame) {
5502 window.requestAnimationFrame = window['requestAnimationFrame'] ||
5509 window.requestAnimationFrame(func);
5516 return Browser.requestAnimationFrame(function() {
5906 Module["requestAnimationFrame"] = function Module_requestAnimationFrame(func) { Browser.requestAnimationFrame(func) };