Ryujinx/Ryujinx.Graphics.GAL/ShaderInfo.cs

12 lines
242 B
C#

namespace Ryujinx.Graphics.GAL
{
public struct ShaderInfo
{
public int FragmentOutputMap { get; }
public ShaderInfo(int fragmentOutputMap)
{
FragmentOutputMap = fragmentOutputMap;
}
}
}