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
I have no good way in the Validation Layers (without me, and every other layer having to hand-write it) to make sure the VkLayerSettingEXT passed in from the app
Is not using a pSettingName that doesn't exists (aka, a setting was removed and they are still setting it)
Validate the type is correct (you try setting INT32 of 1 or FLOAT32 of 1.0 instead of using a BOOL32
The text was updated successfully, but these errors were encountered:
Another issue I realized is in the JSON we just list things are INT for vkconfig, but have no way to know if that means the setting is actually VK_LAYER_SETTING_TYPE_INT32_EXT or VK_LAYER_SETTING_TYPE_UINT32_EXT
Brought up in KhronosGroup/Vulkan-ValidationLayers#9028
I have no good way in the Validation Layers (without me, and every other layer having to hand-write it) to make sure the
VkLayerSettingEXT
passed in from the apppSettingName
that doesn't exists (aka, a setting was removed and they are still setting it)INT32
of1
orFLOAT32
of1.0
instead of using aBOOL32
The text was updated successfully, but these errors were encountered: