Table of Contents

Enum GpuEffectRenderingFlags

Namespace
PaintDotNet.Effects.Gpu
Assembly
PaintDotNet.Effects.Core.dll
[Flags]
public enum GpuEffectRenderingFlags : ulong

Fields

None = 0
DisableSelectionClipping = 2

An effect's rendering is normally clipped (masked) by the active selection. This flag disables that, giving the effect access to the entire output buffer.

The selection data provided by Environment.Selection is not affected by this flag.

ForceAliasedSelectionQuality = 4

The active selection will be rendered without antialiasing, as if the user had chosen pixelated selection quality in the toolbar.

The selection data provided by Environment.Selection will be pixelated, even if the user had not chosen pixelated selection quality in the toolbar.
It is recommended to use the DisableSelectionClipping flag instead of this one, which will enable access to the full quality selection.