videoCommon: also reset logicOp on mode switch

This commit is contained in:
degasus 2013-09-09 02:29:30 +02:00
parent 4146e1f3d6
commit 3ec9f9b64a
1 changed files with 4 additions and 4 deletions

View File

@ -200,19 +200,19 @@ void BPWritten(const BPCmd& bp)
bpmem.blendmode.dstfactor, bpmem.blendmode.srcfactor, bpmem.blendmode.subtract, bpmem.blendmode.logicmode);
// Set LogicOp Blending Mode
if (bp.changes & 2)
if (bp.changes & 0xF002) // logicopenable | logicmode
SetLogicOpMode();
// Set Dithering Mode
if (bp.changes & 4)
if (bp.changes & 4) // dither
SetDitherMode();
// Set Blending Mode
if (bp.changes & 0xFF1)
if (bp.changes & 0xFF1) // blendenable | alphaupdate | dstfactor | srcfactor | subtract
SetBlendMode();
// Set Color Mask
if (bp.changes & 0x18)
if (bp.changes & 0x18) // colorupdate | alphaupdate
SetColorMask();
}
break;