Strip validation extensions from replay

This commit is contained in:
baldurk
2020-06-29 13:02:56 +01:00
parent ed7d774fd4
commit 81e99a71c5
@@ -169,7 +169,8 @@ static void StripUnwantedExtensions(rdcarray<rdcstr> &Extensions)
return true;
// this is debug only, nothing to capture, so nothing to replay
if(ext == "VK_EXT_tooling_info" || ext == "VK_EXT_private_data")
if(ext == "VK_EXT_tooling_info" || ext == "VK_EXT_private_data" ||
ext == "VK_EXT_validation_features" || ext == "VK_EXT_validation_flags")
return true;
return false;