lazarus/components/opengl/example/testopenglcontext1.lpr
mattias 72c7cdff16 added fpgui to codetools and build laz dlg
git-svn-id: trunk@10897 -
2007-04-06 12:59:21 +00:00

16 lines
266 B
ObjectPascal

program TestOpenGLContext1;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms
{ add your units here }, MainUnit, LazOpenGLContext;
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.