// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- using System; namespace Perspex.Platform { public interface IRenderTargetBitmapImpl : IBitmapImpl, IDisposable { void Render(IVisual visual); } }