Maik Klein
Maik Klein
"Go to Definition" does not seem to work in the diff mode in vs code. I am not sure if this is an lsp issue or an codestream issue. I...
From the vulkan spec: ``` #include "vk_platform.h" WSI extensions #include "vulkan.h" #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> #include <android/native_window.h> #include <mir_toolkit/client_types.h> #include <wayland-client.h> #include <windows.h> #include <xcb/xcb.h> ``` I have no idea...
I currently have my own implementations of gc free containers, but it would be nice to switch to a more "widely" used library. But I would need the containers to...
This would effectively allow iterators to be expressed in SPIR-V. A simple mir pass should suffice for this.
Currently rlsl needs a custom compiler but almost all changes have been merged into rustc. I think we should move away from building rustc ourselves and rely on a specific...
rlsl depends on the nightly compiler and therefore requires a specific version of it. I don't want to update the nightly compiler every week or so just to make rlsl...
* spir-v differentiates between runtime arrays and static arrays * Slices can't be supported in rlsl at the moment * Things like `len` on a static array currently maps to...
What is the best way to tell rlsl which extensions should be enabled? We still need to stay compatible with rustc/cargo. Also extensions should be enabled per shader module, and...
Right now everything inside a `bin` file is one shader module. I think this is relatively convenient but there may be better ways, especially since we need to add configuration...