We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#[spirv(vertex)] pub fn vertex( #[spirv(front_facing)] front_facing: bool, #[spirv(fully_covered_ext)] fully_covered_ext: bool, #[spirv(helper_invocation)] helper_invocation: bool, ) {}
thread 'rustc' panicked at 'Expected types to be equal: u8 == bool', crates/rustc_codegen_spirv/src/builder/builder_methods.rs:2182:13
Those three are required (by the builtin) to be actual proper bools, so can't work around using ints. Found in #789
bool
Outputs, etc., are also probably broken.
The text was updated successfully, but these errors were encountered:
Fixed by #809
Sorry, something went wrong.
No branches or pull requests
Those three are required (by the builtin) to be actual proper
bool
s, so can't work around using ints. Found in #789Outputs, etc., are also probably broken.
The text was updated successfully, but these errors were encountered: