2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
2021-08-11 23:01:06 +02:00
|
|
|
public bool HasFrontFacingBug { get; }
|
|
|
|
public bool HasVectorIndexingBug { get; }
|
|
|
|
|
|
|
|
public bool SupportsAstcCompression { get; }
|
2021-12-30 17:10:54 +01:00
|
|
|
public bool SupportsR4G4Format { get; }
|
2021-10-29 00:53:12 +02:00
|
|
|
public bool SupportsFragmentShaderInterlock { get; }
|
|
|
|
public bool SupportsFragmentShaderOrderingIntel { get; }
|
2021-08-11 23:01:06 +02:00
|
|
|
public bool SupportsImageLoadFormatted { get; }
|
|
|
|
public bool SupportsMismatchingViewFormat { get; }
|
2021-06-25 00:54:50 +02:00
|
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
2021-09-19 14:38:39 +02:00
|
|
|
public bool SupportsShaderBallot { get; }
|
2021-08-11 23:01:06 +02:00
|
|
|
public bool SupportsTextureShadowLod { get; }
|
|
|
|
public bool SupportsViewportSwizzle { get; }
|
2021-08-26 23:50:28 +02:00
|
|
|
public bool SupportsIndirectParameters { get; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2021-08-11 23:01:06 +02:00
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public float MaximumSupportedAnisotropy { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2020-03-30 23:38:52 +02:00
|
|
|
|
2019-12-01 03:53:09 +01:00
|
|
|
public Capabilities(
|
2021-08-11 23:01:06 +02:00
|
|
|
bool hasFrontFacingBug,
|
|
|
|
bool hasVectorIndexingBug,
|
|
|
|
bool supportsAstcCompression,
|
2021-12-30 17:10:54 +01:00
|
|
|
bool supportsR4G4Format,
|
2021-10-29 00:53:12 +02:00
|
|
|
bool supportsFragmentShaderInterlock,
|
|
|
|
bool supportsFragmentShaderOrderingIntel,
|
2021-08-11 23:01:06 +02:00
|
|
|
bool supportsImageLoadFormatted,
|
|
|
|
bool supportsMismatchingViewFormat,
|
|
|
|
bool supportsNonConstantTextureOffset,
|
2021-09-19 14:38:39 +02:00
|
|
|
bool supportsShaderBallot,
|
2021-08-11 23:01:06 +02:00
|
|
|
bool supportsTextureShadowLod,
|
|
|
|
bool supportsViewportSwizzle,
|
2021-08-26 23:50:28 +02:00
|
|
|
bool supportsIndirectParameters,
|
2021-08-11 23:01:06 +02:00
|
|
|
int maximumComputeSharedMemorySize,
|
2020-05-28 01:03:07 +02:00
|
|
|
float maximumSupportedAnisotropy,
|
2021-08-11 23:01:06 +02:00
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2021-08-11 23:01:06 +02:00
|
|
|
HasFrontFacingBug = hasFrontFacingBug;
|
|
|
|
HasVectorIndexingBug = hasVectorIndexingBug;
|
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
2021-12-30 17:10:54 +01:00
|
|
|
SupportsR4G4Format = supportsR4G4Format;
|
2021-10-29 00:53:12 +02:00
|
|
|
SupportsFragmentShaderInterlock = supportsFragmentShaderInterlock;
|
|
|
|
SupportsFragmentShaderOrderingIntel = supportsFragmentShaderOrderingIntel;
|
2021-08-11 23:01:06 +02:00
|
|
|
SupportsImageLoadFormatted = supportsImageLoadFormatted;
|
|
|
|
SupportsMismatchingViewFormat = supportsMismatchingViewFormat;
|
2021-06-25 00:54:50 +02:00
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
2021-09-19 14:38:39 +02:00
|
|
|
SupportsShaderBallot = supportsShaderBallot;
|
2021-08-11 23:01:06 +02:00
|
|
|
SupportsTextureShadowLod = supportsTextureShadowLod;
|
|
|
|
SupportsViewportSwizzle = supportsViewportSwizzle;
|
2021-08-26 23:50:28 +02:00
|
|
|
SupportsIndirectParameters = supportsIndirectParameters;
|
2021-08-11 23:01:06 +02:00
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
MaximumSupportedAnisotropy = maximumSupportedAnisotropy;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|