Strip out unique objects layer with other validation layers. Closes #423

This commit is contained in:
baldurk
2016-11-15 17:17:25 +01:00
parent 569cc0614f
commit 7a289c8d53
@@ -70,7 +70,8 @@ static void StripUnwantedLayers(vector<string> &Layers)
if(*it == "VK_LAYER_LUNARG_standard_validation" || *it == "VK_LAYER_LUNARG_core_validation" ||
*it == "VK_LAYER_LUNARG_device_limits" || *it == "VK_LAYER_LUNARG_image" ||
*it == "VK_LAYER_LUNARG_object_tracker" || *it == "VK_LAYER_LUNARG_parameter_validation" ||
*it == "VK_LAYER_LUNARG_swapchain" || *it == "VK_LAYER_GOOGLE_threading")
*it == "VK_LAYER_LUNARG_swapchain" || *it == "VK_LAYER_GOOGLE_threading" ||
*it == "VK_LAYER_GOOGLE_unique_objects")
{
it = Layers.erase(it);
continue;