Example #1
0
 internal FTBitmap(IntPtr reference, BitmapRec bmpInt, Library library)
 {
     this.reference = reference;
     this.rec       = bmpInt;
     this.library   = library;
 }
Example #2
0
 internal FTBitmap(BitmapRec bmpInt)
     : this(bmpInt, null)
 {
 }
Example #3
0
 internal FTBitmap(IntPtr reference, Library library)
 {
     this.reference = reference;
     rec            = PInvokeHelper.PtrToStructure <BitmapRec>(reference);
 }
Example #4
0
 internal FTBitmap(BitmapRec bmpInt, Library library)
 {
     this.rec     = bmpInt;
     this.library = library;
 }