| File: System\Windows\Media\Effects\BitmapEffectState.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // // // // Description: This file contains the implementation of BitmapEffectState. // This is the base class for holding the bitmap effect state. // // namespace System.Windows.Media.Effects { /// <summary> /// This class is used to store the user provided bitmap effect data on Visual. /// It is necessary to implement the emulation layer for some legacy effects on top /// of the new pipline. /// </summary> internal class BitmapEffectState { private BitmapEffect _bitmapEffect; private BitmapEffectInput _bitmapEffectInput; public BitmapEffectState() {} public BitmapEffect BitmapEffect { get { return _bitmapEffect; } set { _bitmapEffect = value; } } public BitmapEffectInput BitmapEffectInput { get { return _bitmapEffectInput; } set { _bitmapEffectInput = value; } } } }