aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/TextureDimensions.cs
blob: dbdf1927fb20e43fe36432c83c255c1e4310fec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Shader.Decoders
{
    enum TextureDimensions
    {
        Texture1D   = 0,
        Texture2D   = 1,
        Texture3D   = 2,
        TextureCube = 3
    }
}