1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 19:16:47 -06:00
ryujinx/Ryujinx.Graphics.GAL/Texture/SwizzleComponent.cs

12 lines
170 B
C#
Raw Normal View History

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