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