diff options
author | Fernando S <fsahmkow27@gmail.com> | 2021-09-08 11:50:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 11:50:26 +0200 |
commit | 6b16f7807ed02d990ad1df685976fe968ba71c3b (patch) | |
tree | c3fc2a932b957c972a1b619d83dfdfbd6354658d /src | |
parent | Merge pull request #6971 from bunnei/buffer-queue-kevent (diff) | |
parent | Fix blend equation enum error (diff) | |
download | yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar.gz yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar.bz2 yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar.lz yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar.xz yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.tar.zst yuzu-6b16f7807ed02d990ad1df685976fe968ba71c3b.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 1aa43523a..7f4ca6282 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -475,10 +475,10 @@ public: // These values are used by Nouveau and some games. AddGL = 0x8006, - SubtractGL = 0x8007, - ReverseSubtractGL = 0x8008, - MinGL = 0x800a, - MaxGL = 0x800b + MinGL = 0x8007, + MaxGL = 0x8008, + SubtractGL = 0x800a, + ReverseSubtractGL = 0x800b }; enum class Factor : u32 { |