Frequently Asked Component Specific Questions
Options |
Display all FAQ items |
Displaying items 1 to 1 of 1, page 1 of 1
<< previous next >>
TMS FMX UI Pack
Performance [Important !]
Performance [Important !]
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.