maxwell_3d: Implement alternate blend equations.

- Used by Undertale.
This commit is contained in:
bunnei
2018-11-22 00:51:01 -05:00
parent bb175ab430
commit 0e6a608245
2 changed files with 12 additions and 0 deletions

View File

@ -389,6 +389,13 @@ public:
ReverseSubtract = 3,
Min = 4,
Max = 5,
// These values are used by Nouveau and some games.
AddGL = 0x8006,
SubtractGL = 0x8007,
ReverseSubtractGL = 0x8008,
MinGL = 0x800a,
MaxGL = 0x800b
};
enum class Factor : u32 {