namespace WPFluent.Hardware; /// /// Set of tools for hardware acceleration. /// public static class HardwareAcceleration { /// /// Determines whether the provided rendering tier is supported. /// /// Hardware acceleration rendering tier to check. /// if tier is supported. public static bool IsSupported(RenderingTier tier) { return RenderCapability.Tier >> 16 >= (int)tier; } }