You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The webidl `long` type is defined to be a 32-bit type:
https://webidl.spec.whatwg.org/#idl-longhttps://webidl.spec.whatwg.org/#idl-unsigned-long
Using `long` on the native side works find for wasm32 but breaks
under wasm64 where `long` is 64-bit. Using `int` instead means the
type is the same under wasm32 and wasm64 which more accurately
represents the html5/webidl type.
See #20276
// canvasX and canvasY are deprecated - there no longer exists a Module['canvas'] object, so canvasX/Y are no longer reported (register a listener on canvas directly to get canvas coordinates, or translate manually)
// canvasX and canvasY are deprecated - there no longer exists a Module['canvas'] object, so canvasX/Y are no longer reported (register a listener on canvas directly to get canvas coordinates, or translate manually)
0 commit comments