Changeset 573 for GraphicTest/Methods


Ignore:
Timestamp:
Jun 25, 2024, 10:49:43 AM (4 days ago)
Author:
chronos
Message:
  • Modified: Build with Lazarus 3.4.
  • Modified: Removed U prefix from unit names.
Location:
GraphicTest/Methods
Files:
14 moved

Legend:

Unmodified
Added
Removed
  • GraphicTest/Methods/MethodBGRABitmap.pas

    r572 r573  
    1 unit UMethodBGRABitmap;
    2 
    3 {$mode delphi}
     1unit MethodBGRABitmap;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, BGRABitmap, BGRABitmapTypes,
     6  Classes, SysUtils, DrawMethod, FastBitmap, BGRABitmap, BGRABitmapTypes,
    97  Controls, Graphics;
    108
     
    4442begin
    4543  BGRABitmap.Free;
    46   inherited Destroy;
     44  inherited;
    4745end;
    4846
     
    6462end;
    6563
    66 
    6764end.
    6865
  • GraphicTest/Methods/MethodBitmapRawImageData.pas

    r572 r573  
    1 unit UMethodBitmapRawImageData;
    2 
    3 {$mode delphi}
     1unit MethodBitmapRawImageData;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics, GraphType;
     6  Classes, SysUtils, DrawMethod, FastBitmap, Graphics, GraphType;
    97
    108type
     
    6058end;
    6159
    62 
    6360end.
    6461
  • GraphicTest/Methods/MethodBitmapRawImageDataMove.pas

    r572 r573  
    1 unit UMethodBitmapRawImageDataMove;
    2 
    3 {$mode delphi}
     1unit MethodBitmapRawImageDataMove;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics, GraphType;
     6  Classes, SysUtils, DrawMethod, FastBitmap, Graphics, GraphType;
    97
    108type
     
    4846end;
    4947
    50 
    5148end.
    5249
  • GraphicTest/Methods/MethodBitmapRawImageDataPaintBox.pas

    r572 r573  
    1 unit UMethodBitmapRawImageDataPaintBox;
    2 
    3 {$mode delphi}
     1unit MethodBitmapRawImageDataPaintBox;
    42
    53interface
    64
    75uses
    8   {$IFDEF windows}Windows,{$ENDIF}Classes, SysUtils, Controls, UDrawMethod, UFastBitmap, Graphics, LCLType,
    9   FPimage, IntfGraphics, GraphType;
     6  {$IFDEF windows}Windows,{$ENDIF}Classes, SysUtils, Controls, DrawMethod,
     7  FastBitmap, Graphics, LCLType, FPimage, IntfGraphics, GraphType;
    108
    119type
     
    4745begin
    4846  FreeAndNil(TempBitmap);
    49   inherited Done;
     47  inherited;
    5048end;
    5149
     
    9492end;
    9593
    96 
    9794end.
    9895
  • GraphicTest/Methods/MethodBitmapScanline.pas

    r572 r573  
    1 unit UMethodBitmapScanline;
    2 
    3 {$mode delphi}
     1unit MethodBitmapScanline;
    42
    53interface
    64
    75uses
    8   LCLIntf, LCLType, Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics;
     6  LCLIntf, LCLType, Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics;
    97
    108type
  • GraphicTest/Methods/MethodCanvasPixels.pas

    r572 r573  
    1 unit UMethodCanvasPixels;
    2 
    3 {$mode delphi}
     1unit MethodCanvasPixels;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics;
     6  Classes, SysUtils, DrawMethod, FastBitmap, Graphics;
    97
    108type
     
    4139end;
    4240
    43 
    4441end.
    4542
  • GraphicTest/Methods/MethodCanvasPixelsUpdateLock.pas

    r572 r573  
    1 unit UMethodCanvasPixelsUpdateLock;
    2 
    3 {$mode delphi}
     1unit MethodCanvasPixelsUpdateLock;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, Graphics;
     6  Classes, SysUtils, DrawMethod, FastBitmap, Graphics;
    97
    108type
     
    4543end;
    4644
    47 
    4845end.
    4946
  • GraphicTest/Methods/MethodDummy.pas

    r572 r573  
    1 unit UMethodDummy;
    2 
    3 {$mode delphi}
     1unit MethodDummy;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap;
     6  Classes, SysUtils, DrawMethod, FastBitmap;
    97
    108type
     
    2321constructor TMethodDummy.Create;
    2422begin
    25   inherited Create;
     23  inherited;
    2624  Caption := 'Dummy';
    2725  Description.Add('This method doesn''t draw anything. It''s purpose is to measure ' +
     
    3331end;
    3432
    35 
    3633end.
    3734
  • GraphicTest/Methods/MethodGraphics32.pas

    r572 r573  
    1 unit UMethodGraphics32;
    2 
    3 {$mode delphi}
     1unit MethodGraphics32;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UFastBitmap, UDrawMethod,
     6  Classes, SysUtils, FastBitmap, DrawMethod,
    97  {$IFDEF GRAPHICS32}GR32, GR32_Image,{$ENDIF}
    108  Controls, Graphics;
     
    3129constructor TMethodGraphics32.Create;
    3230begin
    33   inherited Create;
     31  inherited;
    3432  Caption := 'TGR32Image';
    3533  Description.Add('Graphics32 is well implemented highly optimized Delphi graphic ' +
     
    4644destructor TMethodGraphics32.Destroy;
    4745begin
    48   inherited Destroy;
     46  inherited;
    4947end;
    5048
     
    9290begin
    9391  FreeAndNil(Image);
    94   inherited Done;
     92  inherited;
    9593end;
    9694
  • GraphicTest/Methods/MethodLazIntfImageColorsCopy.pas

    r572 r573  
    1 unit UMethodLazIntfImageColorsCopy;
    2 
    3 {$mode delphi}
     1unit MethodLazIntfImageColorsCopy;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, IntfGraphics, GraphType,
     6  Classes, SysUtils, DrawMethod, FastBitmap, IntfGraphics, GraphType,
    97  fpImage, Graphics;
    108
     
    3331destructor TMethodLazIntfImageColorsCopy.Destroy;
    3432begin
    35   inherited Destroy;
     33  inherited;
    3634end;
    3735
     
    5351end;
    5452
    55 
    5653end.
    5754
  • GraphicTest/Methods/MethodLazIntfImageColorsNoCopy.pas

    r572 r573  
    1 unit UMethodLazIntfImageColorsNoCopy;
    2 
    3 {$mode delphi}
     1unit MethodLazIntfImageColorsNoCopy;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, IntfGraphics, Graphics, Controls;
     6  Classes, SysUtils, DrawMethod, FastBitmap, IntfGraphics, Graphics, Controls;
    97
    108type
     
    4240begin
    4341  TempIntfImage.Free;
    44   inherited Destroy;
     42  inherited;
    4543end;
    4644
     
    5755end;
    5856
    59 
    6057end.
    6158
  • GraphicTest/Methods/MethodMove.pas

    r572 r573  
    1 unit UMethodMove;
    2 
    3 {$mode delphi}
     1unit MethodMove;
    42
    53interface
    64
    75uses
    8   LCLIntf, LCLType, Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics;
     6  LCLIntf, LCLType, Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics;
    97
    108type
     
    2725constructor TMethodMove.Create;
    2826begin
    29   inherited Create;
     27  inherited;
    3028  FastBitmap2 := TFastBitmap.Create;
    3129  Caption := 'Move';
     
    3735begin
    3836  FreeAndNil(FastBitmap2);
    39   inherited Destroy;
     37  inherited;
    4038end;
    4139
     
    4947procedure TMethodMove.UpdateSettings;
    5048begin
    51   inherited UpdateSettings;
     49  inherited;
    5250end;
    5351
     
    6058end;
    6159
    62 
    6360end.
    6461
  • GraphicTest/Methods/MethodOpenGL.pas

    r572 r573  
    1 unit UMethodOpenGL;
    2 
    3 {$mode delphi}
     1unit MethodOpenGL;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap
     6  Classes, SysUtils, DrawMethod, FastBitmap
    97  {$IFDEF OPENGL}, GL, GLExt, OpenGLContext{$ENDIF};
    108
     
    1816    procedure DrawFrame(FastBitmap: TFastBitmap); override;
    1917  end;
    20   {$ENDIF}
     18{$ENDIF}
    2119
    2220
     
    2826constructor TMethodOpenGL.Create;
    2927begin
    30   inherited Create;
     28  inherited;
    3129  Caption := 'OpenGL';
    3230  PaintObject := poOpenGL;
     
    3735destructor TMethodOpenGL.Destroy;
    3836begin
    39   inherited Destroy;
     37  inherited;
    4038end;
    4139
  • GraphicTest/Methods/MethodOpenGLPBO.pas

    r572 r573  
    1 unit UMethodOpenGLPBO;
    2 
    3 {$mode delphi}
     1unit MethodOpenGLPBO;
    42
    53interface
    64
    75uses
    8   Classes, SysUtils, UDrawMethod, UFastBitmap, Controls, Graphics
     6  Classes, SysUtils, DrawMethod, FastBitmap, Controls, Graphics
    97  {$IFDEF OPENGL}, GL, GLExt, OpenGLContext{$ENDIF};
    108
     
    6361constructor TMethodOpenGLPBO.Create;
    6462begin
    65   inherited Create;
     63  inherited;
    6664  Caption := 'OpenGL PBO';
    6765  PaintObject := poOpenGL;
     
    7573destructor TMethodOpenGLPBO.Destroy;
    7674begin
    77   inherited Destroy;
     75  inherited;
    7876end;
    7977
Note: See TracChangeset for help on using the changeset viewer.