phosphorus
phosphorus copied to clipboard
gl.xml parser / GL bindings generator
I noticed the structs generated, such as `__GLSync`, are generated as follows: ```rust #[doc(hidden)] pub struct __GLsync { _priv: u8, } ``` Although this type is only ever used as...
EGL support
Could this generator be used to generate EGL bindings?
Attempt to fix #10 I think the first commit has useful stuff that could be merged. The second commit is garbage, and I don't think it's productive for me to...
In new versions of phosphorus the loader function is defined as `&dyn Fn` https://github.com/Lokathor/phosphorus/blob/13826247117ab738f88db8d1f2004983299b9cc0/src/bin/phosphorus.rs#L783 This doesn't work well if we're already using `FnMut` like in glow (https://github.com/grovesNL/glow/blob/7e702f6724f61955d5323376ce66a0ca5f14a73d/src/native.rs#L21) Is there a...