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; }
|
2019-10-13 06:02:07 +00:00
|
|
|
|
2019-12-09 02:55:22 +00:00
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2019-12-01 02:53:09 +00:00
|
|
|
|
2020-03-30 21:38:52 +00:00
|
|
|
public float MaxSupportedAnisotropy { get; }
|
|
|
|
|
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,
|
|
|
|
int maximumComputeSharedMemorySize,
|
|
|
|
int storageBufferOffsetAlignment,
|
|
|
|
float maxSupportedAnisotropy)
|
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;
|
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2020-03-30 21:38:52 +00:00
|
|
|
MaxSupportedAnisotropy = maxSupportedAnisotropy;
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|