Herman Bergwerf

Results 44 comments of Herman Bergwerf

This could be the line where the `color` property is assigned https://github.com/regl-project/regl/blob/master/lib/framebuffer.js#L635.

My inelegant workaround is to add the following interface: ``` interface ExtendedFramebuffer2D extends REGL.Framebuffer2D { color: REGL.Framebuffer2DAttachment[] } ``` And then write: ``` const sprite_buffer = SPRITES[(tick) % 2] as...

Pure Rollup gives me: ``` const program_path = new URL(new URL('asset/program.wasm', import.meta.url).href, import.meta.url); ``` The second URL constructor looks pointless to me.

Right. So you suggest overriding `BrowserClient.send` and removing both headers from the header map before calling the super method?

For future reference, I now use this code which works without issues for my use cases. ```dart class ApiBrowserClient extends BrowserClient { @override Future send(request) { request.headers..remove('content-length')..remove('user-agent'); return super.send(request); }...

I had a similar issue; there was a separate `Document.xsd` defining an element `Document` which in WSDL was defined as any type. I used `xmlschema` to parse `Document.xsd` and encode...

I think the above code should fail, the canvas needs to be appended to the parent before the Canvas3DContext is instantiated, otherwise the ResizeObserver cannot be attached. Certainly this is...

Sadly I don't have an Android device anymore to debug this, and I cannot get my browser to only send touch events. I can confirm that all touch interaction is...

I am also currently not able to run the build process. `npm run build` does not result in a `build` directory, and there is an error: ``` ERROR in ./lib/examples/alpha-orbitals/index.js...

I was able to fix this by setting resolutionMode = 'native' (via Canvas3DContext Props). There might be something about the other mode that breaks the bounds check of the InputObserver...