1080f64df9
* Implement HLE macros for render target clears * Add constants for the offsets
13 lines
295 B
C#
13 lines
295 B
C#
namespace Ryujinx.Graphics.Gpu.Engine.MME
|
|
{
|
|
/// <summary>
|
|
/// Name of the High-level implementation of a Macro function.
|
|
/// </summary>
|
|
enum MacroHLEFunctionName
|
|
{
|
|
None,
|
|
ClearColor,
|
|
ClearDepthStencil,
|
|
MultiDrawElementsIndirectCount
|
|
}
|
|
}
|