mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Check if BP and XF changes actually change values before flushing
This commit is contained in:
@ -128,7 +128,17 @@ void BPWritten(const BPCmd& bp)
|
|||||||
FlushPipeline();
|
FlushPipeline();
|
||||||
}
|
}
|
||||||
} // END ZTP SPEEDUP HACK
|
} // END ZTP SPEEDUP HACK
|
||||||
else FlushPipeline();
|
else
|
||||||
|
{
|
||||||
|
if (((s32*)&bpmem)[bp.address] != bp.newvalue)
|
||||||
|
{
|
||||||
|
FlushPipeline();
|
||||||
|
}
|
||||||
|
else if (bp.address == BPMEM_TRIGGER_EFB_COPY
|
||||||
|
|| bp.address == BPMEM_CLEARBBOX1
|
||||||
|
|| bp.address == BPMEM_CLEARBBOX2)
|
||||||
|
FlushPipeline();
|
||||||
|
}
|
||||||
|
|
||||||
((u32*)&bpmem)[bp.address] = bp.newvalue;
|
((u32*)&bpmem)[bp.address] = bp.newvalue;
|
||||||
|
|
||||||
|
@ -121,12 +121,18 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
|||||||
case XFMEM_SETVIEWPORT+3:
|
case XFMEM_SETVIEWPORT+3:
|
||||||
case XFMEM_SETVIEWPORT+4:
|
case XFMEM_SETVIEWPORT+4:
|
||||||
case XFMEM_SETVIEWPORT+5:
|
case XFMEM_SETVIEWPORT+5:
|
||||||
VertexManager::Flush();
|
{
|
||||||
VertexShaderManager::SetViewportChanged();
|
u8 size = std::min(transferSize, 6 * 4);
|
||||||
PixelShaderManager::SetViewportChanged();
|
if (memcmp((u32*)&xfregs + (address - 0x1000), pData + dataIndex, size))
|
||||||
|
{
|
||||||
|
VertexManager::Flush();
|
||||||
|
VertexShaderManager::SetViewportChanged();
|
||||||
|
PixelShaderManager::SetViewportChanged();
|
||||||
|
}
|
||||||
|
|
||||||
nextAddress = XFMEM_SETVIEWPORT + 6;
|
nextAddress = XFMEM_SETVIEWPORT + 6;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case XFMEM_SETPROJECTION:
|
case XFMEM_SETPROJECTION:
|
||||||
case XFMEM_SETPROJECTION+1:
|
case XFMEM_SETPROJECTION+1:
|
||||||
@ -135,11 +141,17 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
|||||||
case XFMEM_SETPROJECTION+4:
|
case XFMEM_SETPROJECTION+4:
|
||||||
case XFMEM_SETPROJECTION+5:
|
case XFMEM_SETPROJECTION+5:
|
||||||
case XFMEM_SETPROJECTION+6:
|
case XFMEM_SETPROJECTION+6:
|
||||||
VertexManager::Flush();
|
{
|
||||||
VertexShaderManager::SetProjectionChanged();
|
u8 size = std::min(transferSize, 7 * 4);
|
||||||
|
if (memcmp((u32*)&xfregs + (address - 0x1000), pData + dataIndex, size))
|
||||||
|
{
|
||||||
|
VertexManager::Flush();
|
||||||
|
VertexShaderManager::SetProjectionChanged();
|
||||||
|
}
|
||||||
|
|
||||||
nextAddress = XFMEM_SETPROJECTION + 7;
|
nextAddress = XFMEM_SETPROJECTION + 7;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case XFMEM_SETNUMTEXGENS: // GXSetNumTexGens
|
case XFMEM_SETNUMTEXGENS: // GXSetNumTexGens
|
||||||
if (xfregs.numTexGen.numTexGens != (newValue & 15))
|
if (xfregs.numTexGen.numTexGens != (newValue & 15))
|
||||||
@ -154,10 +166,16 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
|||||||
case XFMEM_SETTEXMTXINFO+5:
|
case XFMEM_SETTEXMTXINFO+5:
|
||||||
case XFMEM_SETTEXMTXINFO+6:
|
case XFMEM_SETTEXMTXINFO+6:
|
||||||
case XFMEM_SETTEXMTXINFO+7:
|
case XFMEM_SETTEXMTXINFO+7:
|
||||||
VertexManager::Flush();
|
{
|
||||||
|
u8 size = std::min(transferSize, 8 * 4);
|
||||||
|
if (memcmp((u32*)&xfregs + (address - 0x1000), pData + dataIndex, size))
|
||||||
|
{
|
||||||
|
VertexManager::Flush();
|
||||||
|
}
|
||||||
|
|
||||||
nextAddress = XFMEM_SETTEXMTXINFO + 8;
|
nextAddress = XFMEM_SETTEXMTXINFO + 8;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case XFMEM_SETPOSMTXINFO:
|
case XFMEM_SETPOSMTXINFO:
|
||||||
case XFMEM_SETPOSMTXINFO+1:
|
case XFMEM_SETPOSMTXINFO+1:
|
||||||
@ -167,10 +185,16 @@ void XFRegWritten(int transferSize, u32 baseAddress, u32 *pData)
|
|||||||
case XFMEM_SETPOSMTXINFO+5:
|
case XFMEM_SETPOSMTXINFO+5:
|
||||||
case XFMEM_SETPOSMTXINFO+6:
|
case XFMEM_SETPOSMTXINFO+6:
|
||||||
case XFMEM_SETPOSMTXINFO+7:
|
case XFMEM_SETPOSMTXINFO+7:
|
||||||
VertexManager::Flush();
|
{
|
||||||
|
u8 size = std::min(transferSize, 8 * 4);
|
||||||
|
if (memcmp((u32*)&xfregs + (address - 0x1000), pData + dataIndex, size))
|
||||||
|
{
|
||||||
|
VertexManager::Flush();
|
||||||
|
}
|
||||||
|
|
||||||
nextAddress = XFMEM_SETPOSMTXINFO + 8;
|
nextAddress = XFMEM_SETPOSMTXINFO + 8;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// --------------
|
// --------------
|
||||||
// Unknown Regs
|
// Unknown Regs
|
||||||
@ -240,8 +264,15 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
|
|||||||
transferSize = 0;
|
transferSize = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
XFMemWritten(xfMemTransferSize, xfMemBase);
|
for (u32 i = 0; i < xfMemTransferSize; ++i)
|
||||||
memcpy_gc(&xfmem[xfMemBase], pData, xfMemTransferSize * 4);
|
{
|
||||||
|
if (((u32*)&xfmem[xfMemBase])[i] != pData[i])
|
||||||
|
{
|
||||||
|
XFMemWritten(xfMemTransferSize, xfMemBase);
|
||||||
|
memcpy_gc(&xfmem[xfMemBase], pData, xfMemTransferSize * 4);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pData += xfMemTransferSize;
|
pData += xfMemTransferSize;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user