mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 18:41:13 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
13 lines
206 B
C#
13 lines
206 B
C#
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
/// <summary>
|
|
/// Conditional rendering enable.
|
|
/// </summary>
|
|
enum ConditionalRenderEnabled
|
|
{
|
|
False,
|
|
True,
|
|
Host,
|
|
}
|
|
}
|