コード例 #1
0
ファイル: Bitmap.cs プロジェクト: majorsilence/Eto
		/// <summary>
		/// Unlocks the previously locked data
		/// </summary>
		/// <remarks>
		/// This will unlock the data, and in some platforms write the data back to the image.  You must
		/// call this method before using the bitmap again.
		/// </remarks>
		/// <param name="bitmapData">The data previously locked via the <see cref="Lock"/> method</param>
		public void Unlock (BitmapData bitmapData)
		{
			handler.Unlock (bitmapData);
		}
コード例 #2
0
ファイル: IndexedBitmap.cs プロジェクト: hultqvist/Eto
		public void Unlock(BitmapData bitmapData)
		{
			inner.Unlock(bitmapData);
		}
コード例 #3
0
ファイル: TestBitmapHandler.cs プロジェクト: mhusen/Eto
		public void Unlock(BitmapData bitmapData)
		{
		}
コード例 #4
0
ファイル: IndexedBitmap.cs プロジェクト: pcdummy/Eto
 public void Unlock(BitmapData bitmapData)
 {
     Handler.Unlock(bitmapData);
 }