mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-16 06:02:40 +00:00
SWRasterizer: Implemented stencil action 1 (GL_ZERO).
Verified with hwtests.
This commit is contained in:
@@ -220,6 +220,9 @@ static u8 PerformStencilAction(Regs::StencilAction action, u8 old_stencil, u8 re
|
||||
case Regs::StencilAction::Keep:
|
||||
return old_stencil;
|
||||
|
||||
case Regs::StencilAction::Zero:
|
||||
return 0;
|
||||
|
||||
case Regs::StencilAction::Replace:
|
||||
return ref;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user