Changeset 573 for GraphicTest/Methods/MethodOpenGL.pas
- Timestamp:
- Jun 25, 2024, 10:49:43 AM (4 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.