mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-05-05 20:18:55 +00:00
17 lines
506 B
C#
17 lines
506 B
C#
using System;
|
|
|
|
namespace Ryujinx.Memory.Tracking
|
|
{
|
|
[Flags]
|
|
public enum RegionFlags
|
|
{
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Access to the resource is expected to occasionally be unaligned.
|
|
/// With some memory managers, guest protection must extend into the previous page to cover unaligned access.
|
|
/// If this is not expected, protection is not altered, which can avoid unintended resource dirty/flush.
|
|
/// </summary>
|
|
UnalignedAccess = 1,
|
|
}
|
|
}
|