2021-08-26 17:50:28 -04:00
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine.MME
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Name of the High-level implementation of a Macro function.
|
|
|
|
|
/// </summary>
|
|
|
|
|
enum MacroHLEFunctionName
|
|
|
|
|
{
|
|
|
|
|
None,
|
2022-08-04 17:30:08 -04:00
|
|
|
|
ClearColor,
|
|
|
|
|
ClearDepthStencil,
|
2022-11-16 12:53:04 -05:00
|
|
|
|
DrawArraysInstanced,
|
|
|
|
|
DrawElementsInstanced,
|
|
|
|
|
DrawElementsIndirect,
|
2021-08-26 17:50:28 -04:00
|
|
|
|
MultiDrawElementsIndirectCount
|
|
|
|
|
}
|
|
|
|
|
}
|