Ryujinx/Ryujinx.Graphics.GAL/Texture/SwizzleComponent.cs

12 lines
170 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.GAL.Texture
{
public enum SwizzleComponent
{
Zero,
One,
Red,
Green,
Blue,
Alpha
}
}