aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Vulkan/BufferAllocationType.cs
blob: 345191f1696c30807816245c3efd2c2cb74b0fd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Graphics.Vulkan
{
    internal enum BufferAllocationType
    {
        Auto = 0,

        HostMappedNoCache,
        HostMapped,
        DeviceLocal,
        DeviceLocalMapped,
        Sparse,
    }
}