cc298c676a
* Enable from Ryujinx.conf * Adapt to use OpenTK.NetStandard * Implement usage of UBOs for GLSL and SPIR-V * Fix a NVidia related issue * Use constant from UniformBinding
18 lines
No EOL
494 B
C#
18 lines
No EOL
494 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Graphics.Gal.Shader
|
|
{
|
|
public class ShaderProgram
|
|
{
|
|
public IEnumerable<ShaderDeclInfo> Textures { get; private set; }
|
|
public IEnumerable<ShaderDeclInfo> Uniforms { get; private set; }
|
|
|
|
public ShaderProgram(
|
|
IEnumerable<ShaderDeclInfo> Textures,
|
|
IEnumerable<ShaderDeclInfo> Uniforms)
|
|
{
|
|
this.Textures = Textures;
|
|
this.Uniforms = Uniforms;
|
|
}
|
|
}
|
|
} |