2019-10-13 07:02:07 +01:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
|
|
|
public bool SupportsAstcCompression { get; }
|
|
|
|
|
2019-12-09 02:55:22 +00:00
|
|
|
public int MaximumViewportDimensions { get; }
|
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
2019-12-01 02:53:09 +00:00
|
|
|
|
|
|
|
public Capabilities(
|
|
|
|
bool supportsAstcCompression,
|
2019-12-06 22:37:00 +00:00
|
|
|
int maximumViewportDimensions,
|
2019-12-09 02:55:22 +00:00
|
|
|
int maximumComputeSharedMemorySize,
|
2019-12-01 02:53:09 +00:00
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 07:02:07 +01:00
|
|
|
{
|
2019-12-09 02:55:22 +00:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
|
MaximumViewportDimensions = maximumViewportDimensions;
|
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 07:02:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|