mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-23 00:19:03 +00:00
VideoBackends / VideoCommon: rename member variables in RenderState to be consistent
This commit is contained in:
parent
ab8a02566d
commit
14459bcc1b
25 changed files with 340 additions and 337 deletions
|
@ -12,11 +12,11 @@ BPMemory bpmem;
|
|||
bool BlendMode::UseLogicOp() const
|
||||
{
|
||||
// Blending overrides the logicop bit.
|
||||
if (blendenable || !logicopenable)
|
||||
if (blend_enable || !logic_op_enable)
|
||||
return false;
|
||||
|
||||
// Fast path for Kirby's Return to Dreamland, they use it with dstAlpha.
|
||||
if (logicmode == LogicOp::NoOp)
|
||||
if (logic_mode == LogicOp::NoOp)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue