mirror of https://github.com/PCSX2/pcsx2.git
GS-hw, TC: log InvalidateLocalMem calls.
This commit is contained in:
parent
9a276d7289
commit
1bd8ec786b
|
@ -962,7 +962,16 @@ void GSTextureCache::InvalidateLocalMem(const GSOffset& off, const GSVector4i& r
|
|||
{
|
||||
u32 bp = off.bp();
|
||||
u32 psm = off.psm();
|
||||
//u32 bw = off->bw;
|
||||
u32 bw = off.bw();
|
||||
|
||||
GL_CACHE("TC: InvalidateLocalMem off(0x%x, %u, %s) r(%d, %d => %d, %d)",
|
||||
bp,
|
||||
bw,
|
||||
psm_str(psm),
|
||||
r.x,
|
||||
r.y,
|
||||
r.z,
|
||||
r.w);
|
||||
|
||||
if (GSConfig.HWDisableReadbacks)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue