diff options
| author | Subv <subv2112@gmail.com> | 2015-08-21 10:35:25 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2015-08-21 10:35:25 -0500 |
| commit | fef1462371b51fb5540817b76d30630868b2a961 (patch) | |
| tree | 7068df3c389cbfd261cb0d78ee40ce228d8924b7 /src/video_core/pica.h | |
| parent | b3e530d005324d915974a4d36a2588656364ab17 (diff) | |
SWRasterizer: Implemented stencil action 1 (GL_ZERO).
Verified with hwtests.
Diffstat (limited to 'src/video_core/pica.h')
| -rw-r--r-- | src/video_core/pica.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 6383e5d56..a47dddd75 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -442,7 +442,7 @@ struct Regs { enum class StencilAction : u32 { Keep = 0, - + Zero = 1, Replace = 2, Increment = 3, Decrement = 4, |
