diff --git a/renderdoc/driver/vulkan/vk_initstate.cpp b/renderdoc/driver/vulkan/vk_initstate.cpp index a74ef8f56..41298d0d6 100644 --- a/renderdoc/driver/vulkan/vk_initstate.cpp +++ b/renderdoc/driver/vulkan/vk_initstate.cpp @@ -1500,14 +1500,9 @@ void WrappedVulkan::Apply_InitialState(WrappedVkRes *live, const VkInitialConten { VkFormat format = m_ImageLayouts[id].imageInfo.format; + // can't clear these, so leave them alone. if(IsBlockFormat(format) || IsYUVFormat(format)) - { - RDCWARN( - "Trying to clear a compressed/YUV image %llu with format %s - should have initial " - "states or be stripped.", - id, ToStr(format).c_str()); return; - } VkCommandBuffer cmd = GetNextCmd();