source: GraphicTest/GraphicTest.lpr@ 449

Last change on this file since 449 was 447, checked in by chronos, 13 years ago
  • Modified: Each methods separated to own unit. Code from unit is displayed to user in main form after method selection.
File size: 709 bytes
Line 
1program GraphicTest;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, lazopenglcontext, UMainForm, UPlatform, UDrawMethod, UFastBitmap,
11 bgrabitmappack, UDrawForm, UCanvasPixels, UCanvasPixelsUpdateLock,
12 ULazIntfImageColorsCopy, ULazIntfImageColorsNoCopy, UBGRABitmapPaintBox,
13UBitmapRawImageDataPaintBox, UBitmapRawImageData, UDummyMethod,
14UBitmapRawImageDataMove, UOpenGLMethod, UOpenGLPBOMethod;
15
16{$R *.res}
17
18begin
19 RequireDerivedFormResource := True;
20 Application.Initialize;
21 Application.CreateForm(TMainForm, MainForm);
22 Application.CreateForm(TDrawForm, DrawForm);
23 Application.Run;
24end.
25
Note: See TracBrowser for help on using the repository browser.