Browse Source

SWRasterizer: Implemented stencil ops 6 and 7.

IncrementWrap and DecrementWrap, verified with hwtests.
pull/15/merge
Subv 11 years ago
parent
commit
7c1f84a92b
  1. 4
      src/video_core/pica.h
  2. 6
      src/video_core/rasterizer.cpp

4
src/video_core/pica.h

@ -446,7 +446,9 @@ struct Regs {
Replace = 2,
Increment = 3,
Decrement = 4,
Invert = 5
Invert = 5,
IncrementWrap = 6,
DecrementWrap = 7
};
struct {

6
src/video_core/rasterizer.cpp

@ -237,6 +237,12 @@ static u8 PerformStencilAction(Regs::StencilAction action, u8 old_stencil, u8 re
case Regs::StencilAction::Invert:
return ~old_stencil;
case Regs::StencilAction::IncrementWrap:
return old_stencil + 1;
case Regs::StencilAction::DecrementWrap:
return old_stencil - 1;
default:
LOG_CRITICAL(HW_GPU, "Unknown stencil action %x", (int)action);
UNIMPLEMENTED();

Loading…
Cancel
Save