1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-02-01 02:04:58 +00:00
Ryujinx/Ryujinx.Graphics.Shader/QueryInfoName.cs

16 lines
384 B
C#
Raw Normal View History

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