namespace UnityEngine.Rendering { /// /// By implementing this interface, a render pipeline can indicate its usage of the STP upscaler /// public interface ISTPEnabledRenderPipeline { /// /// Indicates if this render pipeline instance uses STP. /// bool isStpUsed { get; } } }