Tanner Rogalsky

Results 65 comments of Tanner Rogalsky

I'm working on this. If it's been two weeks and there's no update assume I'm lost at sea and ping me.

Let's consider the difference between winit's "emscripten" and "web" Window structures, respectively. ```rust #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct WindowId(usize); impl WindowId { pub unsafe fn...

I haven't given up on this but I'm expanding my thesis a bit. Bear with me.

So there are two outstanding issues that I see with bringing wasm32-unknown-unknown support to glutin. Firstly, as outlined above, glutin's [requirement that the window context implement the synchronization traits](https://github.com/rust-windowing/glutin/blob/e7cb817b32286e22dc5dae1ce5859bf3ada0fe20/glutin/src/context.rs#L236) is...

Implementing `get_proc_address` can be made to work. There currently aren't any crates that I'm aware of that could take advantage of that on web because the way that WebGL bindings...

You need to use the debug build to get anything close to a usable error message. https://github.com/TannerRogalsky/love.js/tree/master/debug

I think my reopening of this was more aspirational than anything. Otherwise there would be a corresponding PR. But it's been many years so your guess is as good as...

It seems unlikely that I will fix this as SLAM's invasive overwriting of the Love's own APIs aren't a case that I feel like we should cover. But I'll leave...

Thanks for the PR! I'm afraid I don't really understand the implications of this as it pertains to the various versions of Lua and LuaJIT. I'm going to have to...

I've recently experienced this as well. Not exactly the same but I did observe a mismatch between `GL_ACTIVE_UNIFORMS` and `glGetActiveUniform`. It was platform (and maybe browser or driver) specific behavior....