SWRasterizer: Implemented stencil ops 6 and 7.

IncrementWrap and DecrementWrap, verified with hwtests.
This commit is contained in:
Subv 2015-08-21 11:01:42 -05:00
parent e43eb130d4
commit 7c1f84a92b
2 changed files with 14 additions and 6 deletions

View file

@ -441,12 +441,14 @@ struct Regs {
};
enum class StencilAction : u32 {
Keep = 0,
Zero = 1,
Replace = 2,
Increment = 3,
Decrement = 4,
Invert = 5
Keep = 0,
Zero = 1,
Replace = 2,
Increment = 3,
Decrement = 4,
Invert = 5,
IncrementWrap = 6,
DecrementWrap = 7
};
struct {