aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Memory/MemoryOwner.cs
AgeCommit message (Collapse)Author
2024-06-16fix: for pooled memory used for reference types, clear it on return to the ↵jhorv
pool so that it doesn't prevent GC of the instances it contained (#6937)
2024-06-02New pooled memory types (#6821)jhorv
* feat: add new types MemoryOwner and SpanOwner * use SpanOwner instead of new array allocation * change for loop condition to `fences.Length` instead of `count` to elide Span boundary checks on `fences`