aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/QueryInfoName.cs
blob: e976dcdbdbbdfc021ca1c2d69cfeea2165ded761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.Graphics.Shader
{
    public enum QueryInfoName
    {
        ComputeLocalSizeX,
        ComputeLocalSizeY,
        ComputeLocalSizeZ,
        ComputeSharedMemorySize,
        IsTextureBuffer,
        IsTextureRectangle,
        MaximumViewportDimensions,
        PrimitiveTopology,
        StorageBufferOffsetAlignment,
        SupportsNonConstantTextureOffset,
        ViewportTransformEnable
    }
}