Ryujinx/Ryujinx.Graphics.Gpu/Image/TextureDescriptorType.cs

16 lines
374 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.Gpu.Image
{
/// <summary>
/// The texture descriptor type.
/// This specifies the texture memory layout.
/// The texture descriptor structure depends on the type.
/// </summary>
2019-10-13 08:02:07 +02:00
enum TextureDescriptorType
{
Buffer,
LinearColorKey,
Linear,
BlockLinear,
BlockLinearColorKey
}
}