0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2024-12-23 09:15:46 +00:00
Ryujinx/src/Ryujinx.Graphics.GAL/BufferAccess.cs

19 lines
298 B
C#
Raw Normal View History

using System;
namespace Ryujinx.Graphics.GAL
{
[Flags]
public enum BufferAccess
{
Default = 0,
2024-05-19 19:53:37 +00:00
HostMemory = 1,
DeviceMemory = 2,
DeviceMemoryMapped = 3,
MemoryTypeMask = 0xf,
Stream = 1 << 4,
SparseCompatible = 1 << 5,
}
}