From 49745cfa37b247c3e49bfae126bafbe41e166bc6 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 19 May 2021 18:15:26 -0300 Subject: Move shader resource descriptor creation out of the backend (#2290) * Move shader resource descriptor creation out of the backend * Remove now unused code, and other nits * Shader cache version bump * Nits * Set format for bindless image load/store * Fix buffer write flag --- .../StructuredIr/StructuredProgramInfo.cs | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs') diff --git a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs b/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs index d1619bfa..9479d535 100644 --- a/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs +++ b/Ryujinx.Graphics.Shader/StructuredIr/StructuredProgramInfo.cs @@ -6,31 +6,17 @@ namespace Ryujinx.Graphics.Shader.StructuredIr { public List Functions { get; } - public HashSet CBuffers { get; } - public HashSet SBuffers { get; } - public HashSet IAttributes { get; } public HashSet OAttributes { get; } - public bool UsesCbIndexing { get; set; } - public HelperFunctionsMask HelperFunctionsMask { get; set; } - public HashSet Samplers { get; } - public HashSet Images { get; } - public StructuredProgramInfo() { Functions = new List(); - CBuffers = new HashSet(); - SBuffers = new HashSet(); - IAttributes = new HashSet(); OAttributes = new HashSet(); - - Samplers = new HashSet(); - Images = new HashSet(); } } } \ No newline at end of file -- cgit v1.2.3