HTFViewerD.dpr 634 B

123456789101112131415161718192021222324
  1. (* Basic viewer for HTF Content.
  2. Gives basic time stats for HTF data extraction and rendering (there is NO
  3. cache, each tile is reloaded each time from the disk, ie. those are the
  4. timings you could expect when accessing an HTF area for the first time or
  5. when "moving at high speed").
  6. Requires the Graphics32 library (http://www.g32.org).
  7. *)
  8. program HTFViewerD;
  9. uses
  10. Forms,
  11. fNavD in 'fNavD.pas' {NavForm},
  12. fViewerD in 'fViewerD.pas' {ViewerForm};
  13. {$R *.res}
  14. begin
  15. Application.Initialize;
  16. Application.CreateForm(TViewerForm, ViewerForm);
  17. Application.CreateForm(TNavForm, NavForm);
  18. Application.Run;
  19. end.