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