Files
penpot/render-wasm/src/js/wapi.js
2025-04-15 15:45:28 +02:00

9 lines
296 B
JavaScript

addToLibrary({
wapi_requestAnimationFrame: function wapi_requestAnimationFrame() {
return window.requestAnimationFrame(Module._process_animation_frame);
},
wapi_cancelAnimationFrame: function wapi_cancelAnimationFrame(frameId) {
return window.cancelAnimationFrame(frameId);
}
});