You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
apparently VK_RESULT_END_RANGE does not exist anymore and vuh2 doesn't compile therefore since vulkan 1.2.140. Therefore, the enum VuhError in src/include/vuh/error_code.hpp should use another start value like 10, 11, 100, or 101. Alternatively, it could start from 0 since it looks like the code doesn't depend on VuhError and VkResult not beeing overlapping. How should it be changed?
The text was updated successfully, but these errors were encountered:
Vuh code does not depend on VuhError and VkResult to not overlap but it would still be a nice guarantee to have. Cause the user code might happen to introduce that dependency and the bugs would be hard to deal with. I need to think a bit about this. At tend towards the config-time constant with some reasonable default value.
apparently VK_RESULT_END_RANGE does not exist anymore and vuh2 doesn't compile therefore since vulkan 1.2.140. Therefore, the enum VuhError in src/include/vuh/error_code.hpp should use another start value like 10, 11, 100, or 101. Alternatively, it could start from 0 since it looks like the code doesn't depend on VuhError and VkResult not beeing overlapping. How should it be changed?
The text was updated successfully, but these errors were encountered: