RasterizerCache: Log problematic formats when flushing a surface.

This commit is contained in:
Subv
2018-09-17 13:38:23 -05:00
parent 8474a5adf7
commit b27ba353d4

View File

@@ -584,7 +584,8 @@ static void ConvertFormatAsNeeded_FlushGLBuffer(std::vector<u8>& data, PixelForm
case PixelFormat::G8R8S:
case PixelFormat::ASTC_2D_4X4:
case PixelFormat::ASTC_2D_8X8: {
LOG_CRITICAL(HW_GPU, "Conversion of formats after texture flushing is not implemented");
LOG_CRITICAL(HW_GPU, "Conversion of format {} after texture flushing is not implemented",
static_cast<u32>(pixel_format));
UNREACHABLE();
break;
}