1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-08-04 21:32:54 +02:00
Files
CEF4Delphi/demos/Lazarus_Windows/VirtualUIBrowser/VirtualUIBrowser_sp.lpr

28 lines
772 B
ObjectPascal
Raw Permalink Normal View History

program VirtualUIBrowser_sp;
{$MODE Delphi}
{$I ..\..\..\source\cef.inc}
uses
LCLIntf, LCLType, LMessages, Forms, Interfaces,
uCEFApplicationCore;
// CEF needs to set the LARGEADDRESSAWARE ($20) flag which allows 32-bit processes to use up to 3GB of RAM.
{$IFDEF WIN32}{$SetPEFlags IMAGE_FILE_LARGE_ADDRESS_AWARE}{$ENDIF}
{$R *.res}
begin
GlobalCEFApp := TCefApplicationCore.Create;
GlobalCEFApp.WindowlessRenderingEnabled := True;
GlobalCEFApp.EnableGPU := True;
GlobalCEFApp.SetCurrentDir := True;
//GlobalCEFApp.LogFile := 'debug.log';
//GlobalCEFApp.LogSeverity := LOGSEVERITY_VERBOSE;
GlobalCEFApp.StartSubProcess;
DestroyGlobalCEFApp;
end.