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)
594if ((_currentPolySegmentData.Flags & MILCoreSegFlags.SegIsAGap) != 0) 599if ((_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));