Changeset 454 for GraphicTest/Methods/UBGRABitmapPaintBox.pas
- Timestamp:
- Nov 26, 2012, 7:38:56 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GraphicTest/Methods/UBGRABitmapPaintBox.pas
r447 r454 7 7 uses 8 8 Classes, SysUtils, UDrawMethod, UFastBitmap, BGRABitmap, BGRABitmapTypes, 9 Controls ;9 Controls, Graphics; 10 10 11 11 type … … 15 15 BGRABitmap: TBGRABitmap; 16 16 procedure Paint(Sender: TObject); override; 17 procedure Init(Parent: TWinControl; Size: TPoint ); override;17 procedure Init(Parent: TWinControl; Size: TPoint; PixelFormat: TPixelFormat); override; 18 18 constructor Create; override; 19 19 destructor Destroy; override; … … 32 32 end; 33 33 34 procedure TBGRABitmapPaintBox.Init(Parent: TWinControl; Size: TPoint );34 procedure TBGRABitmapPaintBox.Init(Parent: TWinControl; Size: TPoint; PixelFormat: TPixelFormat); 35 35 begin 36 inherited Init(Parent, Size);36 inherited; 37 37 BGRABitmap.SetSize(PaintBox.Width, PaintBox.Height); 38 38 end;
Note:
See TracChangeset
for help on using the changeset viewer.