Table of Contents

Enum SvgLineJoin

Namespace
SharpDX.Direct2D1
Assembly
SharpDX.Direct2D1.dll

Indicates how pixel shader sampling will be restricted. This indicates whether the vertex buffer is large and tends to change infrequently or smaller and changes frequently (typically frame over frame).

public enum SvgLineJoin

Fields

Bevel = 1

The pixel shader is not restricted in its sampling.

Miter = 3

The pixel shader samples inputs only at the same scene coordinate as the output pixel and returns transparent black whenever the input pixels are also transparent black.

Round = 2

No documentation.

Remarks

If the shader specifies D2D1_PIXEL_OPTIONS_NONE, it must still correctly implement the region of interest calculations in ID2D1Transform::MapOutputRectToInputRects and ID2D1Transform::MapInputRectsToOutputRect.