mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 14:56:39 +00:00
c00c638ecc
- 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)
9 lines
No EOL
161 B
C#
9 lines
No EOL
161 B
C#
namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
|
|
{
|
|
enum NvChannelPriority
|
|
{
|
|
Low = 50,
|
|
Medium = 100,
|
|
High = 150
|
|
}
|
|
} |