1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-15 12:20:04 -06:00
ryujinx/Ryujinx.Graphics.Shader/ShaderProgram.cs
2020-01-09 02:13:00 +01:00

23 lines
529 B
C#

namespace Ryujinx.Graphics.Shader
{
public class ShaderProgram
{
public ShaderProgramInfo Info { get; }
public ShaderStage Stage { get; }
public string Code { get; private set; }
internal ShaderProgram(ShaderProgramInfo info, ShaderStage stage, string code)
{
Info = info;
Stage = stage;
Code = code;
}
public void Replace(string name, string value)
{
Code = Code.Replace(name, value);
}
}
}