mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-02-06 06:52:55 -06:00
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;
|
||
|
}
|
||
|
}
|
||
|
}
|