2019-10-13 06:02:07 +00:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
2019-12-11 06:54:18 +00:00
|
|
|
public bool SupportsAstcCompression { get; }
|
2020-05-27 09:00:21 +00:00
|
|
|
public bool SupportsImageLoadFormatted { get; }
|
2019-12-11 06:54:18 +00:00
|
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
2020-05-27 23:03:07 +00:00
|
|
|
public bool SupportsViewportSwizzle { get; }
|
2019-10-13 06:02:07 +00:00
|
|
|
|
2020-05-27 23:03:07 +00:00
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public float MaximumSupportedAnisotropy { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2020-03-30 21:38:52 +00:00
|
|
|
|
2019-12-01 02:53:09 +00:00
|
|
|
public Capabilities(
|
2020-03-30 21:38:52 +00:00
|
|
|
bool supportsAstcCompression,
|
2020-05-27 09:00:21 +00:00
|
|
|
bool supportsImageLoadFormatted,
|
2020-03-30 21:38:52 +00:00
|
|
|
bool supportsNonConstantTextureOffset,
|
2020-05-27 23:03:07 +00:00
|
|
|
bool supportsViewportSwizzle,
|
2020-03-30 21:38:52 +00:00
|
|
|
int maximumComputeSharedMemorySize,
|
2020-05-27 23:03:07 +00:00
|
|
|
float maximumSupportedAnisotropy,
|
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 06:02:07 +00:00
|
|
|
{
|
2019-12-11 06:54:18 +00:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
2020-05-27 09:00:21 +00:00
|
|
|
SupportsImageLoadFormatted = supportsImageLoadFormatted;
|
2019-12-11 06:54:18 +00:00
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
2020-05-27 23:03:07 +00:00
|
|
|
SupportsViewportSwizzle = supportsViewportSwizzle;
|
2019-12-11 06:54:18 +00:00
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
2020-05-27 23:03:07 +00:00
|
|
|
MaximumSupportedAnisotropy = maximumSupportedAnisotropy;
|
2019-12-11 06:54:18 +00:00
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|