Ryujinx/Ryujinx.Graphics/Gal/Shader/GlslProgram.cs

18 lines
446 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Ryujinx.Graphics.Gal.Shader
{
public class GlslProgram : ShaderProgram
{
public string Code { get; private set; }
public GlslProgram(
string Code,
IEnumerable<ShaderDeclInfo> Textures,
IEnumerable<ShaderDeclInfo> Uniforms)
: base(Textures, Uniforms)
{
this.Code = Code;
}
}
}