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
All the draw/dispatch VUIDs are duplicated for every draw/dispatch command (e.g., a VU for vkCmdDraw also exists for vkCmdDrawIndexed). It's annoying to have to add exceptions (khronos_validation.message_id_filter) for every variant. Would be very nice if there was some way to just glob by the VUID number instead of the full string.
The text was updated successfully, but these errors were encountered:
The current issue is we take the full string and hash it (to do the filtering and message limits)
A simple solution could be to make 2 hash, so one for VUID-vkCmdDrawIndexed-magFilter and one for 04553 and detect either... we would also need to update message_id_filter to handle just 04553
my only other worry is if people have checks in their own custom callbacks, I am trying to figure out a way (besides creating a message_id_filter_2) to not just break people
All the draw/dispatch VUIDs are duplicated for every draw/dispatch command (e.g., a VU for vkCmdDraw also exists for vkCmdDrawIndexed). It's annoying to have to add exceptions (
khronos_validation.message_id_filter
) for every variant. Would be very nice if there was some way to just glob by the VUID number instead of the full string.The text was updated successfully, but these errors were encountered: