Ryujinx/Ryujinx.HLE/Gpu/Memory/NvGpuBufferType.cs
gdkchan 095db47e13
Query multiple pages at once with GetWriteWatch (#222)
* Query multiple pages at once with GetWriteWatch

* Allow multiple buffer types to share the same page, aways use the physical address as cache key

* Remove a variable that is no longer needed
2018-07-08 16:55:15 -03:00

10 lines
No EOL
135 B
C#

namespace Ryujinx.HLE.Gpu.Memory
{
enum NvGpuBufferType
{
Index,
Vertex,
Texture,
Count
}
}