3 writes to Flags
PresentationCore (3)
System\Windows\Media\ByteStreamGeometryContext.cs (3)
724_currentPolySegmentData.Flags |= isStroked ? 0 : MILCoreSegFlags.SegIsAGap; 725_currentPolySegmentData.Flags |= hasCurves ? MILCoreSegFlags.SegIsCurved : 0; 726_currentPolySegmentData.Flags |= isSmoothJoin ? MILCoreSegFlags.SegSmoothJoin : 0;
12 references to Flags
PresentationCore (12)
System\Windows\Media\ByteStreamGeometryContext.cs (6)
610if ((_currentPolySegmentData.Flags & MILCoreSegFlags.SegIsAGap) != 0) 615if ((_currentPolySegmentData.Flags & MILCoreSegFlags.SegIsCurved) != 0) 703(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegIsAGap) == 0) != isStroked) || 704(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) != isSmoothJoin) 733(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegIsAGap) == 0) == isStroked) && 734(((_currentPolySegmentData.Flags & MILCoreSegFlags.SegSmoothJoin) != 0) == isSmoothJoin));
System\Windows\Media\PathGeometry.cs (6)
291((pSegmentPoly->Flags & MILCoreSegFlags.SegIsAGap) == 0), 292((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 296((pSegmentPoly->Flags & MILCoreSegFlags.SegIsAGap) == 0), 297((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0)); 301((pSegmentPoly->Flags & MILCoreSegFlags.SegIsAGap) == 0), 302((pSegmentPoly->Flags & MILCoreSegFlags.SegSmoothJoin) != 0));