mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-15 22:47:42 +02:00
12 lines
205 B
C#
12 lines
205 B
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
internal enum BufferAllocationType
|
|
{
|
|
Auto = 0,
|
|
|
|
HostMappedNoCache,
|
|
HostMapped,
|
|
DeviceLocal,
|
|
DeviceLocalMapped
|
|
}
|
|
}
|