summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFeng Chen <vonchenplus@gmail.com>2021-09-07 10:04:47 +0800
committerFeng Chen <vonchenplus@gmail.com>2021-09-07 10:12:09 +0800
commit029237480745cba23f6044ccc5184beee0825b24 (patch)
tree74a3abc1d1943353c9293f01bf8d9658ee658e14 /src
parent51ccc29cdd2e8ac7aa1a10dfdef12ad981c67056 (diff)
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:
// 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 {