mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-02 18:27:43 +02:00
22 lines
No EOL
621 B
C#
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;
|
|
}
|
|
}
|
|
} |