diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs b/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs deleted file mode 100644 index e348f304..00000000 --- a/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs +++ /dev/null @@ -1,28 +0,0 @@ -using Ryujinx.Graphics.GAL; - -namespace Ryujinx.Graphics.Gpu.Shader -{ - /// <summary> - /// Cached graphics shader code for all stages. - /// </summary> - class GraphicsShader - { - /// <summary> - /// Host shader program object. - /// </summary> - public IProgram HostProgram { get; set; } - - /// <summary> - /// Compiled shader for each shader stage. - /// </summary> - public CachedShader[] Shaders { get; } - - /// <summary> - /// Creates a new instance of cached graphics shader. - /// </summary> - public GraphicsShader() - { - Shaders = new CachedShader[Constants.ShaderStages]; - } - } -}
\ No newline at end of file |
