SetMmeShadowRamControlMode.cs 280 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Engine
  2. {
  3. /// <summary>
  4. /// MME shadow RAM control mode.
  5. /// </summary>
  6. enum SetMmeShadowRamControlMode
  7. {
  8. MethodTrack = 0,
  9. MethodTrackWithFilter = 1,
  10. MethodPassthrough = 2,
  11. MethodReplay = 3,
  12. }
  13. }