Browse Source

Fix blend equation enum error

nce_cpp
Feng Chen 4 years ago
parent
commit
63acf10871
  1. 8
      src/video_core/engines/maxwell_3d.h

8
src/video_core/engines/maxwell_3d.h

@ -475,10 +475,10 @@ public:
// These values are used by Nouveau and some games. // These values are used by Nouveau and some games.
AddGL = 0x8006, AddGL = 0x8006,
SubtractGL = 0x8007,
ReverseSubtractGL = 0x8008,
MinGL = 0x800a,
MaxGL = 0x800b
MinGL = 0x8007,
MaxGL = 0x8008,
SubtractGL = 0x800a,
ReverseSubtractGL = 0x800b
}; };
enum class Factor : u32 { enum class Factor : u32 {

Loading…
Cancel
Save