1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-25 16:33:30 +01:00
Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvChannelPriority.cs
Ac_K c00c638ecc NvHostChannelIoctl: Implement setter for SetSubmitTimeout, SetPriority and SetTimeslice (#747)
- Implement accurate setter for SetPriority.
- Implement accurate setter for SetTimeslice (close #666).
- Implement basic setter for SetSubmitTimeout (close #678).

(plus some comments and a missing `PrintStub` call)
2019-09-01 20:55:38 -03:00

9 lines
161 B
C#

namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
{
enum NvChannelPriority
{
Low = 50,
Medium = 100,
High = 150
}
}