aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/ShaderProgram.cs
blob: 9257fd262dabe01050b2d7784e2bb1e0fff7f57e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Ryujinx.Graphics.Shader
{
    public class ShaderProgram
    {
        public ShaderProgramInfo Info { get; }

        public string Code { get; }

        internal ShaderProgram(ShaderProgramInfo info, string code)
        {
            Info = info;
            Code = code;
        }
    }
}