mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 20:28:36 +00:00
1080f64df9
* Implement HLE macros for render target clears * Add constants for the offsets
14 lines
295 B
C#
14 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
|
|
}
|
|
}
|