aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/pica.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-01-27 17:26:09 -0500
committerGravatar bunnei <bunneidev@gmail.com>2015-01-27 22:03:34 -0500
commitb522cf4e6a77d025eab4f70c1efdbc401f08e15b (patch)
treef99ff5df34528c4b6098d471e140ab057004ba3c /src/video_core/pica.h
parent9f93367aa0954007c21ae91831ed5c2ee45f94ba (diff)
Pica: Implement color/alpha channel enable.
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 a19f4190..78603ebd 100644
--- a/src/video_core/pica.h
+++ b/src/video_core/pica.h
@@ -370,6 +370,10 @@ struct Regs {
union {
BitField< 0, 1, u32> depth_test_enable;
BitField< 4, 3, CompareFunc> depth_test_func;
+ BitField< 8, 1, u32> red_enable;
+ BitField< 9, 1, u32> green_enable;
+ BitField<10, 1, u32> blue_enable;
+ BitField<11, 1, u32> alpha_enable;
BitField<12, 1, u32> depth_write_enable;
};