mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
17 lines
420 B
C#
17 lines
420 B
C#
namespace Ryujinx.Graphics.Shader
|
|
{
|
|
public enum QueryInfoName
|
|
{
|
|
ComputeLocalSizeX,
|
|
ComputeLocalSizeY,
|
|
ComputeLocalSizeZ,
|
|
ComputeSharedMemorySize,
|
|
IsTextureBuffer,
|
|
IsTextureRectangle,
|
|
MaximumViewportDimensions,
|
|
PrimitiveTopology,
|
|
StorageBufferOffsetAlignment,
|
|
SupportsNonConstantTextureOffset,
|
|
ViewportTransformEnable
|
|
}
|
|
} |