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