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 | |
---|
1 | program GraphicTest;
|
---|
2 |
|
---|
3 | {$mode objfpc}{$H+}
|
---|
4 |
|
---|
5 | uses
|
---|
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,
|
---|
13 | UBitmapRawImageDataPaintBox, UBitmapRawImageData, UDummyMethod,
|
---|
14 | UBitmapRawImageDataMove, UOpenGLMethod, UOpenGLPBOMethod;
|
---|
15 |
|
---|
16 | {$R *.res}
|
---|
17 |
|
---|
18 | begin
|
---|
19 | RequireDerivedFormResource := True;
|
---|
20 | Application.Initialize;
|
---|
21 | Application.CreateForm(TMainForm, MainForm);
|
---|
22 | Application.CreateForm(TDrawForm, DrawForm);
|
---|
23 | Application.Run;
|
---|
24 | end.
|
---|
25 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.