2 writes to _currentPolySegmentData
PresentationCore (2)
System\Windows\Media\ByteStreamGeometryContext.cs (2)
586
fixed (MIL_SEGMENT_POLY* pCurrentPolySegmentData = &
_currentPolySegmentData
)
615
_currentPolySegmentData
= new MIL_SEGMENT_POLY();
16 references to _currentPolySegmentData
PresentationCore (16)
System\Windows\Media\ByteStreamGeometryContext.cs (16)
591
_lastSegmentSize = (UInt32)(sizeof(MIL_SEGMENT_POLY) + (sizeof(Point) *
_currentPolySegmentData
.Count));
595
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) != 0)
600
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsCurved) != 0)
655
_currentPolySegmentData
.Count++;
677
_currentPolySegmentData
.Count += (uint)count;
687
(
_currentPolySegmentData
.Type != segmentType) ||
688
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) != isStroked) ||
689
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin)
708
_currentPolySegmentData
.Type = segmentType;
709
_currentPolySegmentData
.Flags |= isStroked ? 0 : MILCoreSegFlags.SegIsAGap;
710
_currentPolySegmentData
.Flags |= hasCurves ? MILCoreSegFlags.SegIsCurved : 0;
711
_currentPolySegmentData
.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0;
712
_currentPolySegmentData
.BackSize = _lastSegmentSize;
717
(
_currentPolySegmentData
.Type == segmentType) &&
718
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) == isStroked) &&
719
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));