lazarus/components/opengl/example/testopenglcontext1.lpr
2006-01-01 20:43:51 +00:00

16 lines
275 B
ObjectPascal

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