mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 18:00:47 -07:00
Add a pass to turn global memory access into storage access, and do all storage related transformations on IR
This commit is contained in:
@ -4,9 +4,14 @@ namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public bool SupportsAstcCompression { get; }
|
||||
|
||||
public Capabilities(bool supportsAstcCompression)
|
||||
public int StorageBufferOffsetAlignment { get; }
|
||||
|
||||
public Capabilities(
|
||||
bool supportsAstcCompression,
|
||||
int storageBufferOffsetAlignment)
|
||||
{
|
||||
SupportsAstcCompression = supportsAstcCompression;
|
||||
SupportsAstcCompression = supportsAstcCompression;
|
||||
StorageBufferOffsetAlignment = storageBufferOffsetAlignment;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user