mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
17 lines
330 B
C#
17 lines
330 B
C#
using Ryujinx.Graphics.GAL;
|
|
using Ryujinx.Graphics.Shader;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
class GraphicsShader
|
|
{
|
|
public IProgram Interface { get; set; }
|
|
|
|
public ShaderProgram[] Shader { get; }
|
|
|
|
public GraphicsShader()
|
|
{
|
|
Shader = new ShaderProgram[5];
|
|
}
|
|
}
|
|
} |