2 writes to _currentPolySegmentData
PresentationCore (2)
System\Windows\Media\ByteStreamGeometryContext.cs (2)
584
fixed (MIL_SEGMENT_POLY* pCurrentPolySegmentData = &
_currentPolySegmentData
)
613
_currentPolySegmentData
= new MIL_SEGMENT_POLY();
16 references to _currentPolySegmentData
PresentationCore (16)
System\Windows\Media\ByteStreamGeometryContext.cs (16)
589
_lastSegmentSize = (UInt32)(sizeof(MIL_SEGMENT_POLY) + (sizeof(Point) *
_currentPolySegmentData
.Count));
593
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) != 0)
598
if ((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsCurved) != 0)
653
_currentPolySegmentData
.Count++;
675
_currentPolySegmentData
.Count += (uint)count;
685
(
_currentPolySegmentData
.Type != segmentType) ||
686
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) != isStroked) ||
687
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin)
706
_currentPolySegmentData
.Type = segmentType;
707
_currentPolySegmentData
.Flags |= isStroked ? 0 : MILCoreSegFlags.SegIsAGap;
708
_currentPolySegmentData
.Flags |= hasCurves ? MILCoreSegFlags.SegIsCurved : 0;
709
_currentPolySegmentData
.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0;
710
_currentPolySegmentData
.BackSize = _lastSegmentSize;
715
(
_currentPolySegmentData
.Type == segmentType) &&
716
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegIsAGap) == 0) == isStroked) &&
717
(((
_currentPolySegmentData
.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));