Ignore:
Timestamp:
Jun 25, 2024, 10:49:43 AM (6 days ago)
Author:
chronos
Message:
  • Modified: Build with Lazarus 3.4.
  • Modified: Removed U prefix from unit names.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.