0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 11:41:40 +00:00
ryujinx-fork/Ryujinx.Graphics/Gal/Shader/GlslProgram.cs

22 lines
No EOL
621 B
C#

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