lazarus/components/tachart/demo/opengl/opengldemo.lpr
ask 48e68e866e TAChart: Add OpenGL demo
git-svn-id: trunk@29707 -
2011-03-02 14:04:52 +00:00

21 lines
364 B
ObjectPascal

program opengldemo;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, lazopenglcontext, Main, tachartlazaruspkg;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.