Table of Contents

Interface IBitmapEffectRenderer

Namespace
PaintDotNet.Effects
Assembly
PaintDotNet.Effects.Core.dll
public interface IBitmapEffectRenderer : IEffectRenderer, IObjectRef, IIsDisposed, IDisposable, IInternalImpl
Inherited Members
Extension Methods

Properties

RenderInfo

Gets the effect's rendering information. This property may only be accessed after Initialize(BitmapEffectInitializeInfo) has been called.

Methods

Initialize(BitmapEffectInitializeInfo)

This must be called before SetToken(EffectConfigToken?) is called for the first time.

Render(void*, int, nint, in PixelFormat, RectInt32)

Renders the requested area and stores the result in the given buffer. The entire buffer is written to, including areas that are outside of the selection. The caller must perform any masking or blending.

SetToken(EffectConfigToken?)

This should be called when the token changes, such as when the user makes changes in the effect's configuration dialog. This must be called once before rendering may begin. This should only be called when there are no threads busy with calls to Render(void*, int, nint, in PixelFormat, RectInt32).