// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Platform
{
using System;
///
/// Defines the platform-specific interface for a
/// .
///
public interface IRenderTargetBitmapImpl : IBitmapImpl, IDisposable
{
///
/// Renders an into the bitmap.
///
/// The visual to render.
///
/// Before calling this method, ensure that has been measured.
///
void Render(IVisual visual);
}
}