mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 09:21:43 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			364 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			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.
 | |
| 
 | 
