// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.CameraSystem { /// /// Interface defining the a camera system settings provider. /// public interface IMixedRealityCameraSettingsProvider : IMixedRealityDataProvider { /// /// Returns whether or not the current display rendering mode is opaque. /// bool IsOpaque { get; } /// /// Applies provider specific configuration settings. /// void ApplyConfiguration(); } }