-
Notifications
You must be signed in to change notification settings - Fork 437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show warnings generated by glslang #117
Comments
glsl-to-spirv is no more. #947 |
Could warnings be shown regardless? shaderc uses glsl internally. |
Good point, in fact, shaderc makes it really easy to get. https://docs.rs/shaderc/0.3.11/shaderc/struct.CompilationArtifact.html#method.get_warning_messages |
The feature linked by Tomaka isn't actually relevant here, because Vulkano-shaders is a procedural macro rather than a build script. Emitting warnings from a procedural macro is possible via the proc_macro_error crate, but this is not possible on stable Rust yet because it's blocked by this feature. |
Once rust-lang/cargo#2630 lands
The text was updated successfully, but these errors were encountered: