mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-17 05:07:42 +02:00
24 lines
594 B
C#
24 lines
594 B
C#
namespace Ryujinx.Graphics.Gpu.Engine.MME
|
|
{
|
|
/// <summary>
|
|
/// Name of the High-level implementation of a Macro function.
|
|
/// </summary>
|
|
enum MacroHLEFunctionName
|
|
{
|
|
None,
|
|
BindShaderProgram,
|
|
ClearColor,
|
|
ClearDepthStencil,
|
|
DrawArraysInstanced,
|
|
DrawElements,
|
|
DrawElementsInstanced,
|
|
DrawElementsIndirect,
|
|
MultiDrawElementsIndirectCount,
|
|
|
|
UpdateBlendState,
|
|
UpdateColorMasks,
|
|
UpdateUniformBufferState,
|
|
UpdateUniformBufferStateCbu,
|
|
UpdateUniformBufferStateCbuV2
|
|
}
|
|
}
|