Remove warning that's falsely triggered now in valid cases

This commit is contained in:
baldurk
2019-08-27 18:18:09 +01:00
parent 1d270254c1
commit c18708cfd8
+1 -6
View File
@@ -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();