From 430faeb8ef9a5906af642a4a2be0eb6e878f812e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 31 Dec 2019 01:46:57 -0300 Subject: Add XML documentation to Ryujinx.Graphics.Gpu.Shader --- Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs') diff --git a/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs b/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs index 7bdf68f7..14c8e5c2 100644 --- a/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs +++ b/Ryujinx.Graphics.Gpu/Shader/GraphicsShader.cs @@ -2,12 +2,24 @@ using Ryujinx.Graphics.GAL; namespace Ryujinx.Graphics.Gpu.Shader { + /// + /// Cached graphics shader code for all stages. + /// class GraphicsShader { + /// + /// Host shader program object. + /// public IProgram HostProgram { get; set; } + /// + /// Compiled shader for each shader stage. + /// public CachedShader[] Shader { get; } + /// + /// Creates a new instance of cached graphics shader. + /// public GraphicsShader() { Shader = new CachedShader[5]; -- cgit v1.2.3