summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Feng Chen2021-09-07 10:04:47 +0800
committerGravatar Feng Chen2021-09-07 10:12:09 +0800
commit029237480745cba23f6044ccc5184beee0825b24 (patch)
tree74a3abc1d1943353c9293f01bf8d9658ee658e14 /src
parentMerge pull request #6965 from bunnei/cpu_manager_jthread (diff)
downloadyuzu-029237480745cba23f6044ccc5184beee0825b24.tar.gz
yuzu-029237480745cba23f6044ccc5184beee0825b24.tar.xz
yuzu-029237480745cba23f6044ccc5184beee0825b24.zip
Fix blend equation enum error
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/maxwell_3d.h8
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:
475 475
476 // These values are used by Nouveau and some games. 476 // These values are used by Nouveau and some games.
477 AddGL = 0x8006, 477 AddGL = 0x8006,
478 SubtractGL = 0x8007, 478 MinGL = 0x8007,
479 ReverseSubtractGL = 0x8008, 479 MaxGL = 0x8008,
480 MinGL = 0x800a, 480 SubtractGL = 0x800a,
481 MaxGL = 0x800b 481 ReverseSubtractGL = 0x800b
482 }; 482 };
483 483
484 enum class Factor : u32 { 484 enum class Factor : u32 {