mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-26 05:22:51 +00:00
12 lines
203 B
C#
12 lines
203 B
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
internal enum BufferAllocationType
|
|
{
|
|
Auto = 0,
|
|
|
|
HostMappedNoCache,
|
|
HostMapped,
|
|
DeviceLocal,
|
|
DeviceLocalMapped,
|
|
}
|
|
}
|