Only warn if an image is seemingly reported as supported

* Some drivers return VK_SUCCESS even for formats that aren't supported.
This commit is contained in:
baldurk
2020-10-19 17:44:37 +01:00
parent fc976d2d39
commit 804f659e8c
+1 -1
View File
@@ -606,7 +606,7 @@ void main()
if(props1D.maxExtent.width >= texWidth || props2D.maxExtent.width >= texWidth ||
props3D.maxExtent.width >= texWidth)
{
TEST_ERROR("Format %d can't be loaded in shader but can be a texture!", f.texFmt);
TEST_WARN("Format %d can't be loaded in shader but can be a texture!", f.texFmt);
}
}