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; }
|
|
|
|
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
|
|
|
|
|
|
|
public Capabilities(
|
|
|
|
bool supportsAstcCompression,
|
2019-12-11 06:54:18 +00:00
|
|
|
bool supportsNonConstantTextureOffset,
|
2019-12-09 02:55:22 +00:00
|
|
|
int maximumComputeSharedMemorySize,
|
2019-12-01 02:53:09 +00:00
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 06:02:07 +00:00
|
|
|
{
|
2019-12-11 06:54:18 +00:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|