-
Notifications
You must be signed in to change notification settings - Fork 56
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
Multiple operations with same opcode #236
Comments
To clarify my stance here, the CI being green should imply some form of legitimacy. If we start ignoring sensible errors - even if they may seem rather harmless on the surface - a green CI becomes more and more meaningless in my eyes. Again these warnings aren't the end of the world and I haven't investigated whether they could really be harmful, they are at least confusing. For example:
Picks and returns the |
This was already thought of earlier 😬: Lines 537 to 540 in 4f408eb
(Comment specifically on |
One more occurrence for reference Lines 46 to 49 in 4f408eb
|
👍 It's funny because identical warnings are already ignored by At the same time some |
Currently multiple ops with the same opcode get generated in cases where an extension gets included in KHR extensions.
Example in autgent_context.rs:
5334u32 => Ok(ops::Op::ReportIntersectionNV
5334u32 => Ok(ops::Op::ReportIntersectionKHR
As just ignoring the issue seems out of question (#235 (comment)), we need a different solution to fix this. As currently this prevents the pipeline to be green.
The text was updated successfully, but these errors were encountered: