Enum BitmapEffectRenderingSchedule
- Namespace
- PaintDotNet.Effects
- Assembly
- PaintDotNet.Effects.Core.dll
public enum BitmapEffectRenderingSchedule : long
Fields
None = 0
There is only one call to the Effect's Render method, and all regions of interest (scans) are delivered at that time. This also means rendering is effectively single threaded.
HorizontalStrips = 1
The image is broken up into small horizontal strips that cover the full width of the image.
SquareTiles = 2
The image is broken up into square tiles.