mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 12:31:53 +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
|
||
|
}
|
||
|
}
|