From 6a98c643cabeea25dc42e19fe475a687a034a532 Mon Sep 17 00:00:00 2001 From: gdk Date: Sat, 30 Nov 2019 23:53:09 -0300 Subject: Add a pass to turn global memory access into storage access, and do all storage related transformations on IR --- Ryujinx.Graphics.Shader/Decoders/IntegerSize.cs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'Ryujinx.Graphics.Shader/Decoders') diff --git a/Ryujinx.Graphics.Shader/Decoders/IntegerSize.cs b/Ryujinx.Graphics.Shader/Decoders/IntegerSize.cs index 3ff8e1b2..d39c2a90 100644 --- a/Ryujinx.Graphics.Shader/Decoders/IntegerSize.cs +++ b/Ryujinx.Graphics.Shader/Decoders/IntegerSize.cs @@ -2,12 +2,13 @@ namespace Ryujinx.Graphics.Shader.Decoders { enum IntegerSize { - U8 = 0, - S8 = 1, - U16 = 2, - S16 = 3, - B32 = 4, - B64 = 5, - B128 = 6 + U8 = 0, + S8 = 1, + U16 = 2, + S16 = 3, + B32 = 4, + B64 = 5, + B128 = 6, + UB128 = 7 } } \ No newline at end of file -- cgit v1.2.3