Schell Carl Scivally
Schell Carl Scivally
I have a sneaking suspicion that one could accomplish joining wgpu and openxr by using wgpu (backed by vulkan) to render to textures which are then composited by openxr, but...
I would also like to use winit for my VST work, but I can't switch away from SDL2 until I can create a window from a `*mut c_void`: ```rust pub...
Is there any path forward here?
This is something that we will have to provide ourselves. I think a good path forward would be to create a new crate `foreign-raw-window-handle` which does the work of converting...
@lukexi I ran into this this morning as well 👀 . @steveshogren You can fix this by following the steps I laid out in #23 . @lukexi - I think...
Sorry, I edited my previous comment instead of adding a new one.
Hi @0x7c48 - I have run into the same problem. It's because you're using `halive` built with `GHC 8.0.2` to check and recompile a project built with `GHC 8.2.2`. See...
Tricky! Nice find. > On May 12, 2017, at 2:02 AM, kayhide wrote: > > With a new stack project, this code works fine with halive. > > Lib.hs >...
We can figure it out by comparing the two implementations' core dumps or possibly by comparing profiling results. The `PrimMonad` version must be spending more CPU time in this added...
Yes I think `SPECIALIZE` would do it. I'm not sure how `vector` does it - though I see TONS of `INLINE` and some `INLINE_FUSE` pragmas. No `SPECIALIZE` though. Maybe it...