(timeStamp)
| 2385 | |
| 2386 | emscripten_request_animation_frame_loop: (cb, userData) => { |
| 2387 | function tick(timeStamp) { |
| 2388 | if ({{{ makeDynCall('idp', 'cb') }}}(timeStamp, userData)) { |
| 2389 | requestAnimationFrame(tick); |
| 2390 | } |
| 2391 | } |
| 2392 | return requestAnimationFrame(tick); |
| 2393 | }, |
| 2394 |
nothing calls this directly
no test coverage detected