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