コード例 #1
0
ファイル: FTBitmap.cs プロジェクト: jiangzhonghui/SharpFont
 internal FTBitmap(BitmapRec bmpInt, Library library)
 {
     this.rec = bmpInt;
     this.library = library;
 }
コード例 #2
0
ファイル: FTBitmap.cs プロジェクト: jiangzhonghui/SharpFont
 internal FTBitmap(BitmapRec bmpInt)
     : this(bmpInt, null)
 {
 }
コード例 #3
0
ファイル: FTBitmap.cs プロジェクト: none53/SharpFont
		internal FTBitmap(IntPtr reference, BitmapRec bmpInt, Library library)
		{
			this.reference = reference;
			this.rec = bmpInt;
			this.library = library;
		}