Disable very spammy warning in release builds

* The warning is real, this is a problem with the application, but some programs
  cause a lot of barriers to hit this.
This commit is contained in:
baldurk
2020-09-17 12:57:59 +01:00
parent a3b6adc303
commit 720a58a211
@@ -982,7 +982,9 @@ void ImageState::RecordQueueFamilyRelease(const VkImageMemoryBarrier &barrier)
{
if(ImageSubresourceRange(barrier.subresourceRange).Overlaps(it->subresourceRange))
{
#if ENABLED(RDOC_DEVEL)
RDCWARN("Queue family release barriers overlap");
#endif
RemoveQueueFamilyTransfer(it);
--it;
}