Changeset 573 for GraphicTest/Methods
- Timestamp:
- Jun 25, 2024, 10:49:43 AM (5 months ago)
- Location:
- GraphicTest/Methods
- Files:
-
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
GraphicTest/Methods/MethodBGRABitmap.pas
r572 r573 1 unit UMethodBGRABitmap; 2 3 {$mode delphi} 1 unit MethodBGRABitmap; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, BGRABitmap, BGRABitmapTypes,6 Classes, SysUtils, DrawMethod, FastBitmap, BGRABitmap, BGRABitmapTypes, 9 7 Controls, Graphics; 10 8 … … 44 42 begin 45 43 BGRABitmap.Free; 46 inherited Destroy;44 inherited; 47 45 end; 48 46 … … 64 62 end; 65 63 66 67 64 end. 68 65 -
GraphicTest/Methods/MethodBitmapRawImageData.pas
r572 r573 1 unit UMethodBitmapRawImageData; 2 3 {$mode delphi} 1 unit MethodBitmapRawImageData; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics, GraphType;6 Classes, SysUtils, DrawMethod, FastBitmap, Graphics, GraphType; 9 7 10 8 type … … 60 58 end; 61 59 62 63 60 end. 64 61 -
GraphicTest/Methods/MethodBitmapRawImageDataMove.pas
r572 r573 1 unit UMethodBitmapRawImageDataMove; 2 3 {$mode delphi} 1 unit MethodBitmapRawImageDataMove; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics, GraphType;6 Classes, SysUtils, DrawMethod, FastBitmap, Graphics, GraphType; 9 7 10 8 type … … 48 46 end; 49 47 50 51 48 end. 52 49 -
GraphicTest/Methods/MethodBitmapRawImageDataPaintBox.pas
r572 r573 1 unit UMethodBitmapRawImageDataPaintBox; 2 3 {$mode delphi} 1 unit MethodBitmapRawImageDataPaintBox; 4 2 5 3 interface 6 4 7 5 uses 8 {$IFDEF windows}Windows,{$ENDIF}Classes, SysUtils, Controls, UDrawMethod, UFastBitmap, Graphics, LCLType,9 F Pimage, IntfGraphics, GraphType;6 {$IFDEF windows}Windows,{$ENDIF}Classes, SysUtils, Controls, DrawMethod, 7 FastBitmap, Graphics, LCLType, FPimage, IntfGraphics, GraphType; 10 8 11 9 type … … 47 45 begin 48 46 FreeAndNil(TempBitmap); 49 inherited Done;47 inherited; 50 48 end; 51 49 … … 94 92 end; 95 93 96 97 94 end. 98 95 -
GraphicTest/Methods/MethodBitmapScanline.pas
r572 r573 1 unit UMethodBitmapScanline; 2 3 {$mode delphi} 1 unit MethodBitmapScanline; 4 2 5 3 interface 6 4 7 5 uses 8 LCLIntf, LCLType, Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics;6 LCLIntf, LCLType, Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics; 9 7 10 8 type -
GraphicTest/Methods/MethodCanvasPixels.pas
r572 r573 1 unit UMethodCanvasPixels; 2 3 {$mode delphi} 1 unit MethodCanvasPixels; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics;6 Classes, SysUtils, DrawMethod, FastBitmap, Graphics; 9 7 10 8 type … … 41 39 end; 42 40 43 44 41 end. 45 42 -
GraphicTest/Methods/MethodCanvasPixelsUpdateLock.pas
r572 r573 1 unit UMethodCanvasPixelsUpdateLock; 2 3 {$mode delphi} 1 unit MethodCanvasPixelsUpdateLock; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics;6 Classes, SysUtils, DrawMethod, FastBitmap, Graphics; 9 7 10 8 type … … 45 43 end; 46 44 47 48 45 end. 49 46 -
GraphicTest/Methods/MethodDummy.pas
r572 r573 1 unit UMethodDummy; 2 3 {$mode delphi} 1 unit MethodDummy; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap;6 Classes, SysUtils, DrawMethod, FastBitmap; 9 7 10 8 type … … 23 21 constructor TMethodDummy.Create; 24 22 begin 25 inherited Create;23 inherited; 26 24 Caption := 'Dummy'; 27 25 Description.Add('This method doesn''t draw anything. It''s purpose is to measure ' + … … 33 31 end; 34 32 35 36 33 end. 37 34 -
GraphicTest/Methods/MethodGraphics32.pas
r572 r573 1 unit UMethodGraphics32; 2 3 {$mode delphi} 1 unit MethodGraphics32; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UFastBitmap, UDrawMethod,6 Classes, SysUtils, FastBitmap, DrawMethod, 9 7 {$IFDEF GRAPHICS32}GR32, GR32_Image,{$ENDIF} 10 8 Controls, Graphics; … … 31 29 constructor TMethodGraphics32.Create; 32 30 begin 33 inherited Create;31 inherited; 34 32 Caption := 'TGR32Image'; 35 33 Description.Add('Graphics32 is well implemented highly optimized Delphi graphic ' + … … 46 44 destructor TMethodGraphics32.Destroy; 47 45 begin 48 inherited Destroy;46 inherited; 49 47 end; 50 48 … … 92 90 begin 93 91 FreeAndNil(Image); 94 inherited Done;92 inherited; 95 93 end; 96 94 -
GraphicTest/Methods/MethodLazIntfImageColorsCopy.pas
r572 r573 1 unit UMethodLazIntfImageColorsCopy; 2 3 {$mode delphi} 1 unit MethodLazIntfImageColorsCopy; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, IntfGraphics, GraphType,6 Classes, SysUtils, DrawMethod, FastBitmap, IntfGraphics, GraphType, 9 7 fpImage, Graphics; 10 8 … … 33 31 destructor TMethodLazIntfImageColorsCopy.Destroy; 34 32 begin 35 inherited Destroy;33 inherited; 36 34 end; 37 35 … … 53 51 end; 54 52 55 56 53 end. 57 54 -
GraphicTest/Methods/MethodLazIntfImageColorsNoCopy.pas
r572 r573 1 unit UMethodLazIntfImageColorsNoCopy; 2 3 {$mode delphi} 1 unit MethodLazIntfImageColorsNoCopy; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, IntfGraphics, Graphics, Controls;6 Classes, SysUtils, DrawMethod, FastBitmap, IntfGraphics, Graphics, Controls; 9 7 10 8 type … … 42 40 begin 43 41 TempIntfImage.Free; 44 inherited Destroy;42 inherited; 45 43 end; 46 44 … … 57 55 end; 58 56 59 60 57 end. 61 58 -
GraphicTest/Methods/MethodMove.pas
r572 r573 1 unit UMethodMove; 2 3 {$mode delphi} 1 unit MethodMove; 4 2 5 3 interface 6 4 7 5 uses 8 LCLIntf, LCLType, Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics;6 LCLIntf, LCLType, Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics; 9 7 10 8 type … … 27 25 constructor TMethodMove.Create; 28 26 begin 29 inherited Create;27 inherited; 30 28 FastBitmap2 := TFastBitmap.Create; 31 29 Caption := 'Move'; … … 37 35 begin 38 36 FreeAndNil(FastBitmap2); 39 inherited Destroy;37 inherited; 40 38 end; 41 39 … … 49 47 procedure TMethodMove.UpdateSettings; 50 48 begin 51 inherited UpdateSettings;49 inherited; 52 50 end; 53 51 … … 60 58 end; 61 59 62 63 60 end. 64 61 -
GraphicTest/Methods/MethodOpenGL.pas
r572 r573 1 unit UMethodOpenGL; 2 3 {$mode delphi} 1 unit MethodOpenGL; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap6 Classes, SysUtils, DrawMethod, FastBitmap 9 7 {$IFDEF OPENGL}, GL, GLExt, OpenGLContext{$ENDIF}; 10 8 … … 18 16 procedure DrawFrame(FastBitmap: TFastBitmap); override; 19 17 end; 20 18 {$ENDIF} 21 19 22 20 … … 28 26 constructor TMethodOpenGL.Create; 29 27 begin 30 inherited Create;28 inherited; 31 29 Caption := 'OpenGL'; 32 30 PaintObject := poOpenGL; … … 37 35 destructor TMethodOpenGL.Destroy; 38 36 begin 39 inherited Destroy;37 inherited; 40 38 end; 41 39 -
GraphicTest/Methods/MethodOpenGLPBO.pas
r572 r573 1 unit UMethodOpenGLPBO; 2 3 {$mode delphi} 1 unit MethodOpenGLPBO; 4 2 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics6 Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics 9 7 {$IFDEF OPENGL}, GL, GLExt, OpenGLContext{$ENDIF}; 10 8 … … 63 61 constructor TMethodOpenGLPBO.Create; 64 62 begin 65 inherited Create;63 inherited; 66 64 Caption := 'OpenGL PBO'; 67 65 PaintObject := poOpenGL; … … 75 73 destructor TMethodOpenGLPBO.Destroy; 76 74 begin 77 inherited Destroy;75 inherited; 78 76 end; 79 77
Note:
See TracChangeset
for help on using the changeset viewer.