namespace UnityEngine.Rendering
{
///
/// Debug UI panel interface
///
public interface IDebugDisplaySettingsData : IDebugDisplaySettingsQuery
{
///
/// Creates the debug UI panel needed for these debug settings.
///
/// The debug UI panel created.
IDebugDisplaySettingsPanelDisposable CreatePanel();
///
/// Resets the values of the settings data
///
void Reset() { }
}
}