diff options
author | Feng Chen <vonchenplus@gmail.com> | 2021-09-07 04:04:47 +0200 |
---|---|---|
committer | Feng Chen <vonchenplus@gmail.com> | 2021-09-07 04:12:09 +0200 |
commit | 029237480745cba23f6044ccc5184beee0825b24 (patch) | |
tree | 74a3abc1d1943353c9293f01bf8d9658ee658e14 /src/video_core/engines | |
parent | Merge pull request #6965 from bunnei/cpu_manager_jthread (diff) | |
download | yuzu-029237480745cba23f6044ccc5184beee0825b24.tar yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.gz yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.bz2 yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.lz yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.xz yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.zst yuzu-029237480745cba23f6044ccc5184beee0825b24.zip |
Diffstat (limited to 'src/video_core/engines')
-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 { |