QuickFont.JBitmap.Free C# (CSharp) 메소드

Free() 공개 메소드

Just unlocks the bits, so that the bitmap can no longer be blitted to / from.
public Free ( ) : void
리턴 void
        public void Free(){
            bitmap.UnlockBits(bitmapData);
            bitmap.Dispose();
        }

Usage Example

예제 #1
0
파일: JBitmap.cs 프로젝트: Pireax/neovim.cs
 public void Remove(JBitmap bmpToRemove)
 {
     bitmapList.Remove(bmpToRemove);
     bmpToRemove.Free();
 }
All Usage Examples Of QuickFont.JBitmap::Free