A game about forced loneliness, made by TACStudios
1namespace UnityEngine.Rendering
2{
3 /// <summary>
4 /// By implementing this interface, a render pipeline can indicate its usage of the STP upscaler
5 /// </summary>
6 public interface ISTPEnabledRenderPipeline
7 {
8 /// <summary>
9 /// Indicates if this render pipeline instance uses STP.
10 /// </summary>
11 bool isStpUsed { get; }
12 }
13}