4 writes to _format
PresentationCore (4)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (2)
679_format = PixelFormat.GetPixelFormat(_wicSource); 1604_format = sourceBitmap.Format;
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
97_format = pixelFormat; 135_format = sourceBitmap._format;
10 references to _format
PresentationCore (10)
Core\CSharp\System\Windows\Media\Imaging\BitmapSource.cs (2)
186return _format; 271if (_format.Palettized)
Core\CSharp\System\Windows\Media\Imaging\RenderTargetBitmap.cs (2)
135_format = sourceBitmap._format; 300_format.Format,
Core\CSharp\System\Windows\Media\Imaging\WriteableBitmap.cs (6)
1059uint finalRowWidthInBits = (uint)((sourceRect.X + sourceRect.Width) * _format.InternalBitsPerPixel); 1074uint copyWidthInBits = (uint)(sourceRect.Width * _format.InternalBitsPerPixel); 1077uint sourceXbyteOffset = (uint)((sourceRect.X * _format.InternalBitsPerPixel) / 8); 1078uint sourceBufferBitOffset = (uint)((sourceRect.X * _format.InternalBitsPerPixel) % 8); 1080uint destXbyteOffset = (uint)((destinationX * _format.InternalBitsPerPixel) / 8); 1081uint destBufferBitOffset = (uint)((destinationX * _format.InternalBitsPerPixel) % 8);