mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 09:26:41 +00:00
13 lines
205 B
C#
13 lines
205 B
C#
|
namespace Ryujinx.Graphics.Vulkan
|
|||
|
{
|
|||
|
internal enum BufferAllocationType
|
|||
|
{
|
|||
|
Auto = 0,
|
|||
|
|
|||
|
HostMappedNoCache,
|
|||
|
HostMapped,
|
|||
|
DeviceLocal,
|
|||
|
DeviceLocalMapped
|
|||
|
}
|
|||
|
}
|