diff options
| author | bunnei <bunneidev@gmail.com> | 2018-11-22 00:51:01 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-11-22 00:51:01 -0500 |
| commit | 0e6a608245700d1fe08292db96ed29f46b6cb9d6 (patch) | |
| tree | f9910e656e86a7a19c6a74ca4a420a3b44f32f4d /src/video_core/engines | |
| parent | bb175ab4309225ef64a4ce48f4c7d781cc35a3a6 (diff) | |
maxwell_3d: Implement alternate blend equations.
- Used by Undertale.
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/maxwell_3d.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 9e480dc39..eff6abd55 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -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 { |
