Ignore:
Timestamp:
Dec 21, 2016, 3:49:27 PM (8 years ago)
Author:
chronos
Message:
  • Modified: For single class layer TPixmap and TColor is used. They have TBPixmap and TBColor backends pairs.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gbitmap/project1.lpr

    r19 r20  
    88  {$ENDIF}{$ENDIF}
    99  Interfaces, // this includes the LCL widgetset
    10   Forms, UFormMain, GPixmap, GImage, UPixmapSpecialized
     10  SysUtils, Forms, UFormMain, GPixmap, GImage, UPixmapSpecialized
    1111  { you can add units after this };
    1212
    1313{$R *.res}
    1414
     15{$IFDEF DEBUG}
     16const
     17  HeapTraceLog = 'heaptrclog.trc';
     18{$ENDIF}
     19
    1520begin
    16   RequireDerivedFormResource:=True;
     21  {$IFDEF DEBUG}
     22  // Heap trace
     23  DeleteFile(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     24  SetHeapTraceOutput(ExtractFilePath(ParamStr(0)) + HeapTraceLog);
     25  {$ENDIF}
     26
     27  RequireDerivedFormResource := True;
    1728  Application.Initialize;
    1829  Application.CreateForm(TForm1, Form1);
Note: See TracChangeset for help on using the changeset viewer.