Ryujinx/Ryujinx.Graphics/Gpu/TextureSwizzle.cs
gdkchan c8c86a3854
Fix for current framebuffer issues (#78)
[GPU] Fix some of the current framebuffer issues
2018-04-13 15:12:58 -03:00

11 lines
241 B
C#

namespace Ryujinx.Graphics.Gpu
{
public enum TextureSwizzle
{
_1dBuffer = 0,
PitchColorKey = 1,
Pitch = 2,
BlockLinear = 3,
BlockLinearColorKey = 4
}
}