lazarus/components/opengl/rotate_example/testopenglcontext1.lpr
2022-04-12 18:09:38 +10: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.