Frequently Asked Component Specific Questions
Chronological |
By Author: |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>


TMS Pack for FireMonkey: Performance [Important !] (Jul 6, 2012)To enchance performance of Windows projects in firemonkey, you can try to set the GlobalUseDirect2D := false flag in order to gain more performance
program Project1;
uses
FMX.Forms, FMX.Types,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
GlobalUseDirect2D := False;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Pieter Scheldeman (Jul 6, 2012)



