David O'Connor
David O'Connor
[Example guide, from ExpressLRS](https://www.expresslrs.org/2.0/software/toolchain-install/).
What are the downsides to that style vs VDOM? VDOMs are easy to conceptualize and write, but rebuild themselves each update, and require diffing (of varying levels of cleverness) to...
Is the solution I posted/released in resp to your Seed issue adequate?
`Document` can be stored somewhere, or pulled at any time from `web_sys`. Two approaches for interop are what you described: passing `web_sys` node/element trees directly, (straightfwd), and interfacing generically through...
Anyone have thoughts on how to implement a generic API these element-creation APIs could tie into? Maybe with a trait? I have a non-working Element trait I can post for...
Separate template files would be a nice addition as well. Some web devs (eg Vue users) prefer it over integration with code.
What do y'all thinking of mimicking syntax from GFX/Vulkan when able? I agree that the first step should be a thin wrapper. For later high-level APIs, it would be nice...
I like it, and agree that the center should be a `WebGlRenderingContext` wrapper. What do you think about storing configuration options along with it? Eg the things you can set...
https://github.com/gfx-rs/gfx/pull/2554
I wonder if Gloo's role in this should be simple wrappers that improve the web_sys API, and deal with types better. (eg not expose JsValue, and cast things in ways...