Marijn Suijten

Results 1102 comments of Marijn Suijten

@Emilgardis thanks for confirming, I see now (should have opened the docker image before): it's emulating native MSVC in an Ubuntu Docker image on `wine`, hence should run in a...

@spencer-lunarg if that is in accordance with the rest of the spec [^1], then yes that's what I expect. I wouldn't say "regardless of", it should probably be a `MIN(VkApplicationInfo::apiVersion,...

Thanks for that; yeah I should have checked with the spec first before coming here and ultimately requesting the final step which is validation. There were many duplicates open at...

@spencer-lunarg sure, I pieced together a sample test right away. Couldn't run it, some linker error against `slang_createGlobalSession2` and I have yet to validate what's stuck on my system. https://github.com/MarijnS95/Vulkan-ValidationLayers/compare/application-api-version-affects-all-calls

@kvark I don't know unfortunately 😅 - I've mostly been performing upgrades and fixing random user reports while I didn't really have a use for this crate myself, but it...

Looking at the diff myself, I've yet to add some new `OpType`s to the `grammar` so that we don't end up with an error like #266 later, will do so...

It always surprised me that we had to manually add these (and have a lot of bugs like #266 as a result), even though they can be very trivially generated:...

This sounds **very closely** related to all the details outlined in #5505 and #6211 which all cover lack of proper usage of `RawDisplayHandle` to some extent, and papering over it...

Thanks @cwfitzgerald. Would be awesome to start tackling those issues, if there's sign-off to delete the current atrocity and rewrite it with `glutin` :grin:

There is no direct repro other than that the safety constraints at: https://github.com/gfx-rs/wgpu/blob/e7c139b1d4c6b92987d833fddff7b1a30df6b126/wgpu-hal/src/gles/egl.rs#L1105-L1112 are invalid/impossible to uphold after the call to `new_external()`. I copied the same for WGL: https://github.com/gfx-rs/wgpu/blob/e7c139b1d4c6b92987d833fddff7b1a30df6b126/wgpu-hal/src/gles/wgl.rs#L588-L595 ---...