lazarus-ccr/applications/draw_test/draw_test_fast/project1.lpr
blaszijk 8d83ea1a90 added faster test app, based on custom memory bitmap format
added blend file to create test frames
improve TFileCache.GetData speed, fixed bug (function result)

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2283 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-02-10 12:53:48 +00:00

22 lines
374 B
ObjectPascal

program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, { this includes the LCL widgetset}
Forms, Unit1, FileCache, FastBitmap
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.