namespace UnityEngine.Rendering.HighDefinition
{
///
/// Implement this interface on every post process volumes
///
public interface IPostProcessComponent
{
///
/// Tells if the post process needs to be rendered or not.
///
/// true if the effect should be rendered, false otherwise.
bool IsActive();
}
}