123456789101112131415161718192021222324 |
- (* Basic viewer for HTF Content.
- Gives basic time stats for HTF data extraction and rendering (there is NO
- cache, each tile is reloaded each time from the disk, ie. those are the
- timings you could expect when accessing an HTF area for the first time or
- when "moving at high speed").
- Requires the Graphics32 library (http://www.g32.org).
- *)
- program HTFViewerD;
- uses
- Forms,
- fNavD in 'fNavD.pas' {NavForm},
- fViewerD in 'fViewerD.pas' {ViewerForm};
- {$R *.res}
- begin
- Application.Initialize;
- Application.CreateForm(TViewerForm, ViewerForm);
- Application.CreateForm(TNavForm, NavForm);
- Application.Run;
- end.
|