2019-10-13 02:02:07 -04:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
|
|
{
|
|
|
|
public struct Capabilities
|
|
|
|
{
|
|
|
|
public bool SupportsAstcCompression { get; }
|
|
|
|
|
2019-11-30 21:53:09 -05:00
|
|
|
public int StorageBufferOffsetAlignment { get; }
|
|
|
|
|
|
|
|
public Capabilities(
|
|
|
|
bool supportsAstcCompression,
|
|
|
|
int storageBufferOffsetAlignment)
|
2019-10-13 02:02:07 -04:00
|
|
|
{
|
2019-11-30 21:53:09 -05:00
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
|
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|