2019-10-12 23:02:07 -07:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
2019-12-10 22:54:18 -08:00
|
|
|
public bool SupportsAstcCompression { get; }
|
|
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
2019-10-12 23:02:07 -07:00
|
|
|
|
2019-12-08 18:55:22 -08:00
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2019-11-30 18:53:09 -08:00
|
|
|
|
2020-03-30 14:38:52 -07:00
|
|
|
public float MaxSupportedAnisotropy { get; }
|
|
|
|
|
2019-11-30 18:53:09 -08:00
|
|
|
public Capabilities(
|
2020-03-30 14:38:52 -07:00
|
|
|
bool supportsAstcCompression,
|
|
|
|
bool supportsNonConstantTextureOffset,
|
|
|
|
int maximumComputeSharedMemorySize,
|
|
|
|
int storageBufferOffsetAlignment,
|
|
|
|
float maxSupportedAnisotropy)
|
2019-10-12 23:02:07 -07:00
|
|
|
{
|
2019-12-10 22:54:18 -08:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2020-03-30 14:38:52 -07:00
|
|
|
MaxSupportedAnisotropy = maxSupportedAnisotropy;
|
2019-10-12 23:02:07 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|