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