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