17 lines
271 B
C#
17 lines
271 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace AEG.FSR
|
||
|
|
{
|
||
|
|
public enum FSR_Quality
|
||
|
|
{
|
||
|
|
Off,
|
||
|
|
TemporalAntiAliasingOnly,
|
||
|
|
Quality,
|
||
|
|
Balanced,
|
||
|
|
Performance,
|
||
|
|
UltraPerformance,
|
||
|
|
}
|
||
|
|
}
|