2021-08-26 23:50:28 +02: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 23:30:08 +02:00
|
|
|
|
ClearColor,
|
|
|
|
|
ClearDepthStencil,
|
2022-11-16 18:53:04 +01:00
|
|
|
|
DrawArraysInstanced,
|
|
|
|
|
DrawElementsInstanced,
|
|
|
|
|
DrawElementsIndirect,
|
2021-08-26 23:50:28 +02:00
|
|
|
|
MultiDrawElementsIndirectCount
|
|
|
|
|
}
|
|
|
|
|
}
|