12 lines
242 B
C#
12 lines
242 B
C#
|
namespace Ryujinx.Graphics.GAL
|
||
|
{
|
||
|
public struct ShaderInfo
|
||
|
{
|
||
|
public int FragmentOutputMap { get; }
|
||
|
|
||
|
public ShaderInfo(int fragmentOutputMap)
|
||
|
{
|
||
|
FragmentOutputMap = fragmentOutputMap;
|
||
|
}
|
||
|
}
|
||
|
}
|