From b2c55bf772f2436db04357c2689302b98d9f0b26 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 26 Jan 2015 21:10:09 -0500 Subject: Rasterizer: Implemented alpha testing. --- src/video_core/pica.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'src/video_core/pica.h') diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 15850ba1..a19f4190 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -310,7 +310,7 @@ struct Regs { }; struct { - enum DepthFunc : u32 { + enum CompareFunc : u32 { Never = 0, Always = 1, Equal = 2, @@ -357,11 +357,19 @@ struct Regs { BitField<0, 4, Op> op; } logic_op; - INSERT_PADDING_WORDS(0x4); + INSERT_PADDING_WORDS(0x1); + + union { + BitField< 0, 1, u32> enable; + BitField< 4, 3, CompareFunc> func; + BitField< 8, 8, u32> ref; + } alpha_test; + + INSERT_PADDING_WORDS(0x2); union { BitField< 0, 1, u32> depth_test_enable; - BitField< 4, 3, DepthFunc> depth_test_func; + BitField< 4, 3, CompareFunc> depth_test_func; BitField<12, 1, u32> depth_write_enable; }; -- cgit v1.2.3