summaryrefslogtreecommitdiff
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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h
index a19f4190c..78603ebdf 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -370,6 +370,10 @@ struct Regs {
370 union { 370 union {
371 BitField< 0, 1, u32> depth_test_enable; 371 BitField< 0, 1, u32> depth_test_enable;
372 BitField< 4, 3, CompareFunc> depth_test_func; 372 BitField< 4, 3, CompareFunc> depth_test_func;
373 BitField< 8, 1, u32> red_enable;
374 BitField< 9, 1, u32> green_enable;
375 BitField<10, 1, u32> blue_enable;
376 BitField<11, 1, u32> alpha_enable;
373 BitField<12, 1, u32> depth_write_enable; 377 BitField<12, 1, u32> depth_write_enable;
374 }; 378 };
375 379