2019-10-26 19:50:52 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu.Memory
|
|
|
|
{
|
2019-12-31 04:22:58 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Name of a GPU resource.
|
|
|
|
/// </summary>
|
2019-10-26 19:50:52 +02:00
|
|
|
public enum ResourceName
|
|
|
|
{
|
|
|
|
Buffer,
|
|
|
|
Texture,
|
|
|
|
TexturePool,
|
|
|
|
SamplerPool
|
|
|
|
}
|
|
|
|
}
|