IRenderTargetBitmapImpl.cs 315 B

12345678910111213
  1. using Avalonia.Metadata;
  2. namespace Avalonia.Platform
  3. {
  4. /// <summary>
  5. /// Defines the platform-specific interface for a
  6. /// <see cref="Avalonia.Media.Imaging.RenderTargetBitmap"/>.
  7. /// </summary>
  8. [Unstable]
  9. public interface IRenderTargetBitmapImpl : IBitmapImpl, IRenderTarget
  10. {
  11. }
  12. }