aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/TextureDescriptor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/TextureDescriptor.cs')
-rw-r--r--Ryujinx.Graphics.Shader/TextureDescriptor.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Shader/TextureDescriptor.cs b/Ryujinx.Graphics.Shader/TextureDescriptor.cs
index bfcdde59..fae9b58c 100644
--- a/Ryujinx.Graphics.Shader/TextureDescriptor.cs
+++ b/Ryujinx.Graphics.Shader/TextureDescriptor.cs
@@ -13,11 +13,11 @@ namespace Ryujinx.Graphics.Shader
public int CbufSlot { get; }
public int CbufOffset { get; }
- public TextureDescriptor(string name, SamplerType type, int hIndex)
+ public TextureDescriptor(string name, SamplerType type, int handleIndex)
{
Name = name;
Type = type;
- HandleIndex = hIndex;
+ HandleIndex = handleIndex;
IsBindless = false;