14 lines
224 B
C#
14 lines
224 B
C#
namespace Ryujinx.Graphics.Rdna3Vulkan
|
|
{
|
|
internal enum BufferAllocationType
|
|
{
|
|
Auto = 0,
|
|
|
|
HostMappedNoCache,
|
|
HostMapped,
|
|
DeviceLocal,
|
|
DeviceLocalMapped,
|
|
Sparse,
|
|
}
|
|
}
|