* updated glBitmap
[LazOpenGLCore.git] / examples / vertexarrayobject / project1.lpr
diff --git a/examples/vertexarrayobject/project1.lpr b/examples/vertexarrayobject/project1.lpr
new file mode 100644 (file)
index 0000000..66fcec0
--- /dev/null
@@ -0,0 +1,21 @@
+program project1;
+
+{$mode objfpc}{$H+}
+
+uses
+  {$IFDEF UNIX}{$IFDEF UseCThreads}
+  cthreads,
+  {$ENDIF}{$ENDIF}
+  Interfaces, // this includes the LCL widgetset
+  Forms, uMainForm, uglcVertexArrayObject
+  { you can add units after this };
+
+{$R *.res}
+
+begin
+  RequireDerivedFormResource := True;
+  Application.Initialize;
+  Application.CreateForm(TMainForm, MainForm);
+  Application.Run;
+end.
+