1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 19:16:47 -06:00
ryujinx/Ryujinx.Graphics.Shader/QueryInfoName.cs

15 lines
352 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Shader
{
public enum QueryInfoName
{
ComputeLocalSizeX,
ComputeLocalSizeY,
ComputeLocalSizeZ,
ComputeSharedMemorySize,
IsTextureBuffer,
IsTextureRectangle,
PrimitiveTopology,
StorageBufferOffsetAlignment,
2019-12-31 19:22:45 -03:00
SupportsNonConstantTextureOffset
}
}