Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (10)
385public virtual void CopyPixels(Int32Rect sourceRect, Array pixels, int stride, int offset)
413Int32Rect sourceRect = Int32Rect.Empty;
440public virtual void CopyPixels(Int32Rect sourceRect, IntPtr buffer, int bufferSize, int stride)
708unsafe internal void CriticalCopyPixels(Int32Rect sourceRect, Array pixels, int stride, int offset)
792internal void CriticalCopyPixels(Int32Rect sourceRect, IntPtr buffer, int bufferSize, int stride)
904Int32Rect sourceRect = new Int32Rect(0, 0, 1, 1);
1955Int32Rect rc;
1963rc = (Int32Rect)Marshal.PtrToStructure(prc, typeof(Int32Rect));
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (9)
198public void AddDirtyRect(Int32Rect dirtyRect)
304Int32Rect rect = new Int32Rect(0, 0, _pixelWidth, _pixelHeight);
401Int32Rect sourceRect,
436Int32Rect sourceRect,
495Int32Rect sourceRect,
554Int32Rect sourceRect,
882Int32Rect rcFull = new Int32Rect(0, 0, _pixelWidth, _pixelHeight);
922Int32Rect sourceRect,
1083Int32Rect destinationRect = sourceRect;