Dominic Cooney

Results 29 comments of Dominic Cooney

Something mentioned in the steering committee meeting (I think by @dontcallmedom ?) was documenting the differences between storage policies (cookies, local storage, query parameter stripping, etc.) across different engines. This...

> Video layers don't have an inherent pixel width and height. It seems to the author that they do. See my first paragraph about XRLayerInit requiring viewPixelWidth and viewPixelHeight. >...

Great list. Here's some feedback from Oculus: - P0 - most devs will/should need - Input profiles - Performance - Hands - Teleportation, locomotion - P1 - some devs will...

WebXR Guides are particularly important. WebGL is very stateful and it is hard to inspect the state. Adding WebXR on top of that, where you don't precisely control your inputs...

I cloned android-haskell-activity again, and despite having the path set up this time, I encountered this error again: ``` [exec] /home/dpc/.ghc/android-14/x86-4.7/bin/../lib/gcc/i686-linux-android/4.7/../../../../i686-linux-android/bin/ld: fatal error: -shared and -r are incompatible ``` ant...

That tests that the window proxy's self references—`window.frames`, `globalThis`, `self` and `window`— refer to the window proxy after the frame is detached, and again after the event loop has spun....

Here's a reduced test case for `frames`: ```html 'use strict'; const f = document.body.appendChild(document.createElement('iframe')); const w = f.contentWindow; f.remove(); requestAnimationFrame(() => { console.log(w.frames === w ? 'PASS' : 'FAIL'); });...

I've been reading bindings a bit. High level, these getters thunk through the window proxy so presumably the window proxy could return self for these getters. (This what Chrome does...

@opaugam We're working on the binary format now. Could you share details of your use case? Could you go into more detail about "byte frames"? Trace markers would be useful;...