mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 01:58:02 -05:00
Pica: Implement color/alpha channel enable.
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user