2 writes to _currentPolySegmentData
PresentationCore (2)
System\Windows\Media\ByteStreamGeometryContext.cs (2)
585
fixed (MIL_SEGMENT_POLY* pCurrentPolySegmentData = &
_currentPolySegmentData
)
614
_currentPolySegmentData
= new MIL_SEGMENT_POLY();
16 references to _currentPolySegmentData
PresentationCore (16)
System\Windows\Media\ByteStreamGeometryContext.cs (16)
590
_lastSegmentSize = (UInt32)(sizeof(MIL_SEGMENT_POLY) + (sizeof(Point) *
_currentPolySegmentData
.Count));
594
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) != 0)
599
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsCurved) != 0)
654
_currentPolySegmentData
.Count++;
676
_currentPolySegmentData
.Count += (uint)count;
686
(
_currentPolySegmentData
.Type != segmentType) ||
687
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) != isStroked) ||
688
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin)
707
_currentPolySegmentData
.Type = segmentType;
708
_currentPolySegmentData
.Flags |= isStroked ? 0 : MILCoreSegFlags.SegIsAGap;
709
_currentPolySegmentData
.Flags |= hasCurves ? MILCoreSegFlags.SegIsCurved : 0;
710
_currentPolySegmentData
.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0;
711
_currentPolySegmentData
.BackSize = _lastSegmentSize;
716
(
_currentPolySegmentData
.Type == segmentType) &&
717
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) == isStroked) &&
718
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));