mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
BPStructs: Consistently put the two shared copy args first
And rename them so they make a bit more sense.
This commit is contained in:
parent
1ae8edc1d0
commit
9d161b4170
5 changed files with 25 additions and 20 deletions
|
@ -90,8 +90,9 @@ void SetColorMask()
|
|||
g_renderer->SetColorMask();
|
||||
}
|
||||
|
||||
void CopyEFB(u32 dstAddr, unsigned int dstFormat, PEControl::PixelFormat srcFormat,
|
||||
const EFBRectangle& srcRect, bool isIntensity, bool scaleByHalf)
|
||||
void CopyEFB(u32 dstAddr, const EFBRectangle& srcRect,
|
||||
unsigned int dstFormat, PEControl::PixelFormat srcFormat,
|
||||
bool isIntensity, bool scaleByHalf)
|
||||
{
|
||||
// bpmem.zcontrol.pixel_format to PEControl::Z24 is when the game wants to copy from ZBuffer (Zbuffer uses 24-bit Format)
|
||||
if (g_ActiveConfig.bEFBCopyEnable)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue