[D3D12] Analysis: Display fetch constant contents if type is wrong

This commit is contained in:
Triang3l
2018-10-10 12:38:55 +03:00
parent 7bc79cbd01
commit 90f700c785
2 changed files with 8 additions and 2 deletions

View File

@@ -976,7 +976,11 @@ void TextureCache::BindingInfoFromFetchConstant(
}
if (fetch.type != 2) {
XELOGGPU("Texture fetch type is not 2 - ignoring!");
XELOGW(
"Texture fetch type is not 2 - ignoring (fetch constant is %.8X %.8X "
"%.8X %.8X %.8X %.8X)!",
fetch.dword_0, fetch.dword_1, fetch.dword_2, fetch.dword_3,
fetch.dword_4, fetch.dword_5);
return;
}