VideoBackends / VideoCommon: rename member variables in RenderState to be consistent

This commit is contained in:
iwubcode 2025-08-23 13:35:05 -05:00
commit 14459bcc1b
25 changed files with 340 additions and 337 deletions

View file

@ -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;