2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
2019-12-11 07:54:18 +01:00
|
|
|
public bool SupportsAstcCompression { get; }
|
|
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-09 03:55:22 +01:00
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2019-12-01 03:53:09 +01:00
|
|
|
|
|
|
|
public Capabilities(
|
|
|
|
bool supportsAstcCompression,
|
2019-12-11 07:54:18 +01:00
|
|
|
bool supportsNonConstantTextureOffset,
|
2019-12-09 03:55:22 +01:00
|
|
|
int maximumComputeSharedMemorySize,
|
2019-12-01 03:53:09 +01:00
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2019-12-11 07:54:18 +01:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|