3 writes to Flags
PresentationCore (3)
System\Windows\Media\ByteStreamGeometryContext.cs (3)
708
_currentPolySegmentData.
Flags
|= isStroked ? 0 : MILCoreSegFlags.SegIsAGap;
709
_currentPolySegmentData.
Flags
|= hasCurves ? MILCoreSegFlags.SegIsCurved : 0;
710
_currentPolySegmentData.
Flags
|= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0;
12 references to Flags
PresentationCore (12)
System\Windows\Media\ByteStreamGeometryContext.cs (6)
594
if ((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegIsAGap) != 0)
599
if ((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegIsCurved) != 0)
687
(((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegIsAGap) == 0) != isStroked) ||
688
(((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin)
717
(((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegIsAGap) == 0) == isStroked) &&
718
(((_currentPolySegmentData.
Flags
& MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));
System\Windows\Media\PathGeometry.cs (6)
266
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegIsAGap) == 0),
267
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegSmoothJoin) != 0));
271
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegIsAGap) == 0),
272
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegSmoothJoin) != 0));
276
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegIsAGap) == 0),
277
((pSegmentPoly->
Flags
& MILCoreSegFlags.SegSmoothJoin) != 0));