From b522cf4e6a77d025eab4f70c1efdbc401f08e15b Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 27 Jan 2015 17:26:09 -0500 Subject: Pica: Implement color/alpha channel enable. --- src/video_core/pica.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/video_core/pica.h') 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; }; -- cgit v1.2.3