From 6b13c5b439a54d0bb0139a2e33a2f76707db5fe7 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 7 Dec 2019 18:31:17 -0300 Subject: Support bindless texture gather shader instruction --- Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs (limited to 'Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs') diff --git a/Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs b/Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs new file mode 100644 index 00000000..55d1225a --- /dev/null +++ b/Ryujinx.Graphics.Shader/Decoders/IOpCodeTexture.cs @@ -0,0 +1,23 @@ +namespace Ryujinx.Graphics.Shader.Decoders +{ + interface IOpCodeTexture : IOpCode + { + Register Rd { get; } + Register Ra { get; } + Register Rb { get; } + + bool IsArray { get; } + + TextureDimensions Dimensions { get; } + + int ComponentMask { get; } + + int Immediate { get; } + + TextureLodMode LodMode { get; } + + bool HasOffset { get; } + bool HasDepthCompare { get; } + bool IsMultisample { get; } + } +} \ No newline at end of file -- cgit v1.2.3