aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/pica.h')
-rw-r--r--src/video_core/pica.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index de1ce05b..15850ba1 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -311,9 +311,14 @@ struct Regs {
struct {
enum DepthFunc : u32 {
- Always = 1,
- LessThan = 4,
- GreaterThan = 6,
+ Never = 0,
+ Always = 1,
+ Equal = 2,
+ NotEqual = 3,
+ LessThan = 4,
+ LessThanOrEqual = 5,
+ GreaterThan = 6,
+ GreaterThanOrEqual = 7,
};
union {