2019-10-13 08:02:07 +02:00
|
|
|
namespace Ryujinx.Graphics.Gpu
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2019-12-31 21:08:20 +01:00
|
|
|
/// <summary>
|
|
|
|
/// GPU commands FIFO processor commands.
|
|
|
|
/// </summary>
|
2018-04-08 21:17:35 +02:00
|
|
|
enum NvGpuFifoMeth
|
|
|
|
{
|
2020-03-13 02:30:26 +01:00
|
|
|
BindChannel = 0,
|
|
|
|
WaitForIdle = 0x44,
|
|
|
|
SetMacroUploadAddress = 0x45,
|
|
|
|
SendMacroCodeData = 0x46,
|
|
|
|
SetMacroBindingIndex = 0x47,
|
|
|
|
BindMacro = 0x48,
|
|
|
|
SetMmeShadowRamControl = 0x49
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
}
|