1 instantiation of MIL_SEGMENT_POLY
PresentationCore (1)
System\Windows\Media\ByteStreamGeometryContext.cs (1)
614
_currentPolySegmentData = new
MIL_SEGMENT_POLY
();
15 references to MIL_SEGMENT_POLY
PresentationCore (15)
System\Windows\Media\ByteStreamGeometryContext.cs (7)
582
Debug.Assert(_currentPolySegmentDataOffset + sizeof(
MIL_SEGMENT_POLY
) <= _currOffset);
585
fixed (
MIL_SEGMENT_POLY
* pCurrentPolySegmentData = &_currentPolySegmentData)
587
OverwriteData((byte *)pCurrentPolySegmentData, _currentPolySegmentDataOffset, sizeof(
MIL_SEGMENT_POLY
));
590
_lastSegmentSize = (UInt32)(sizeof(
MIL_SEGMENT_POLY
) + (sizeof(Point) * _currentPolySegmentData.Count));
698
MIL_SEGMENT_POLY
tempSegment;
703
AppendData((byte*)&tempSegment, sizeof(
MIL_SEGMENT_POLY
));
763
private
MIL_SEGMENT_POLY
_currentPolySegmentData;
System\Windows\Media\PathGeometry.cs (8)
233
Debug.Assert(pathData.SerializedData.Length >= currentOffset + sizeof(
MIL_SEGMENT_POLY
));
234
Debug.Assert(pathData.Size >= currentOffset + sizeof(
MIL_SEGMENT_POLY
));
236
MIL_SEGMENT_POLY
*pSegmentPoly = (
MIL_SEGMENT_POLY
*)(pbData + currentOffset);
247
sizeof(
MIL_SEGMENT_POLY
) +
251
sizeof(
MIL_SEGMENT_POLY
) +
254
Point* pPoint = (Point*)(pbData + currentOffset + sizeof(
MIL_SEGMENT_POLY
));
282
currentOffset += sizeof(
MIL_SEGMENT_POLY
) + (int)pSegmentPoly->Count * sizeof(Point);