Add XML documentation to Ryujinx.Graphics.Gpu.Shader
This commit is contained in:
parent
e58b540c4e
commit
430faeb8ef
9 changed files with 197 additions and 11 deletions
|
@ -2,12 +2,24 @@ 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[] Shader { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new instance of cached graphics shader.
|
||||
/// </summary>
|
||||
public GraphicsShader()
|
||||
{
|
||||
Shader = new CachedShader[5];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue