blob: ad0715c5865db821b68281b497e440cc638057f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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>
enum TextureDescriptorType
{
Buffer,
LinearColorKey,
Linear,
BlockLinear,
BlockLinearColorKey,
}
}
|