summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-08-12 03:57:16 +0200
committerSubv <subv2112@gmail.com>2018-08-12 03:57:16 +0200
commit969326bd58bc37e9c518c6d17e9f2297d4847cc1 (patch)
tree35e4e9ff7dfde1ecdbffdc3b6caff8cbc2510848 /src/video_core/engines
parentMerge pull request #1010 from bunnei/unk-vert-attrib-shader (diff)
downloadyuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar.gz
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar.bz2
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar.lz
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar.xz
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.tar.zst
yuzu-969326bd58bc37e9c518c6d17e9f2297d4847cc1.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h
index 0506ac8fe..bec2141ae 100644
--- a/src/video_core/engines/maxwell_3d.h
+++ b/src/video_core/engines/maxwell_3d.h
@@ -352,6 +352,27 @@ public:
OneMinusConstantColor = 0x62,
ConstantAlpha = 0x63,
OneMinusConstantAlpha = 0x64,
+
+ // These values are used by Nouveau and some games.
+ ZeroGL = 0x4000,
+ OneGL = 0x4001,
+ SourceColorGL = 0x4300,
+ OneMinusSourceColorGL = 0x4301,
+ SourceAlphaGL = 0x4302,
+ OneMinusSourceAlphaGL = 0x4303,
+ DestAlphaGL = 0x4304,
+ OneMinusDestAlphaGL = 0x4305,
+ DestColorGL = 0x4306,
+ OneMinusDestColorGL = 0x4307,
+ SourceAlphaSaturateGL = 0x4308,
+ ConstantColorGL = 0xc001,
+ OneMinusConstantColorGL = 0xc002,
+ ConstantAlphaGL = 0xc003,
+ OneMinusConstantAlphaGL = 0xc004,
+ Source1ColorGL = 0xc900,
+ OneMinusSource1ColorGL = 0xc901,
+ Source1AlphaGL = 0xc902,
+ OneMinusSource1AlphaGL = 0xc903,
};
u32 separate_alpha;