diff options
author | Subv <subv2112@gmail.com> | 2015-08-21 11:01:42 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-08-21 11:01:42 -0500 |
commit | 7c1f84a92b9727765a755c312e90b09b0cf6ed1d (patch) | |
tree | ad6a2b0a93303caf6c6823a52a676931498b29ce /src/video_core/pica.h | |
parent | e43eb130d4852e396f77480b48a49811c6889bbd (diff) |
SWRasterizer: Implemented stencil ops 6 and 7.
IncrementWrap and DecrementWrap, verified with hwtests.
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r-- | src/video_core/pica.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index a47dddd75..87cf705e7 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -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 { |