C# Class WinRTXamlToolkit.Imaging.WriteableBitmapBlitBlockExtensions

WriteableBitmap extensions for blitting.
Afficher le fichier Open project: xyzzer/WinRTXamlToolkit

Méthodes publiques

Méthode Description
BlitBlock ( this target, int targetVerticalOffset, WriteableBitmap source, int sourceVerticalOffset, int verticalBlockHeight, bool autoInvalidate = false ) : void

Blits a vertical block of a source bitmap to a target bitmap of same width.

Method Details

BlitBlock() public static méthode

Blits a vertical block of a source bitmap to a target bitmap of same width.
BlitBlock only supports copying blocks of pixels between bitmaps of equal size.;source
public static BlitBlock ( this target, int targetVerticalOffset, WriteableBitmap source, int sourceVerticalOffset, int verticalBlockHeight, bool autoInvalidate = false ) : void
target this The target.
targetVerticalOffset int The target vertical offset.
source Windows.UI.Xaml.Media.Imaging.WriteableBitmap The source.
sourceVerticalOffset int The source vertical offset.
verticalBlockHeight int Height of the vertical block.
autoInvalidate bool if set to true the bitmap will auto invalidate.
Résultat void