Enum EffectFlags
- Namespace
- PaintDotNet.Effects
- Assembly
- PaintDotNet.Effects.Core.dll
[Flags]
public enum EffectFlags : ulong
Fields
None = 0
The effect is not configurable and has no UI.
Configurable = 1
The effect is configurable, so it will display UI with an EffectConfigDialog and store its configuration properties using an EffectConfigToken.
FirstTileIsNotRenderedWithBarrier = 1152921504606846976
Normally an effect's first tile (that is, the first call to Render) is rendered by itself, after which the remaining tiles are rendered in parallel with full multithreading.
With this flag, the first tile is not special and will be rendered in parallel along with all the other tiles.ForceAliasedSelectionQuality = 2305843009213693952
The active selection will be rendered without antialiasing, as if the user had chosen pixelated selection quality in the toolbar.
SingleThreaded = 9223372036854775808
Only one thread will be used for rendering the effect.