ResourceName.cs 225 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. /// <summary>
  4. /// Name of a GPU resource.
  5. /// </summary>
  6. public enum ResourceName
  7. {
  8. Buffer,
  9. Texture,
  10. TexturePool,
  11. SamplerPool
  12. }
  13. }