From b19c4740823ed8fcebf62bf5741a7614a2ac0aa0 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Thu, 17 May 2018 15:25:42 -0300 Subject: Added more shader instructions, including BFE, BRA (partial), FMNMX, ISCADD, SHL, LD_C, some shader related fixes, added support for texture component selection --- Ryujinx.Graphics/Gal/GalTextureSource.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Ryujinx.Graphics/Gal/GalTextureSource.cs (limited to 'Ryujinx.Graphics/Gal/GalTextureSource.cs') diff --git a/Ryujinx.Graphics/Gal/GalTextureSource.cs b/Ryujinx.Graphics/Gal/GalTextureSource.cs new file mode 100644 index 00000000..72dbec60 --- /dev/null +++ b/Ryujinx.Graphics/Gal/GalTextureSource.cs @@ -0,0 +1,13 @@ +namespace Ryujinx.Graphics.Gal +{ + public enum GalTextureSource + { + Zero = 0, + Red = 2, + Green = 3, + Blue = 4, + Alpha = 5, + OneInt = 6, + OneFloat = 7 + } +} \ No newline at end of file -- cgit v1.2.3