Difference between revisions of "OpenGL Tutorial"

From Free Pascal wiki
Jump to navigationJump to search
Line 9: Line 9:
 
Many OS comes with preinstalled GLUT, but if yours don’t have one you can easily find it using [http://www.google.com/ Google].
 
Many OS comes with preinstalled GLUT, but if yours don’t have one you can easily find it using [http://www.google.com/ Google].
  
Windows binaries can be downloaded from [http://www.xmission.com/~nate/glut.html].
+
Windows binaries can be downloaded from [http://www.xmission.com/~nate/glut.html www.xmission.com].
  
 
=Creating main window with GLUT=
 
=Creating main window with GLUT=
 +
 +
Tutorials will be translated soon.

Revision as of 12:39, 26 July 2006

OpenGL is the premier environment for developing portable, interactive 2D and 3D graphics applications. Since its introduction in 1992, OpenGL has become the industry's most widely used and supported 2D and 3D graphics application programming interface (API), bringing thousands of applications to a wide variety of computer platforms. OpenGL fosters innovation and speeds application development by incorporating a broad set of rendering, texture mapping, special effects, and other powerful visualization functions. Developers can leverage the power of OpenGL across all popular desktop and workstation platforms, ensuring wide application deployment.

You can find more information about OpenGL here.

GLUT (pronounced like the glut in gluttony) is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. GLUT makes it considerably easier to learn about and explore OpenGL programming. GLUT provides a portable API so you can write a single OpenGL program that works across all PC and workstation OS platforms.

You can find more information about GLUT here.

Many OS comes with preinstalled GLUT, but if yours don’t have one you can easily find it using Google.

Windows binaries can be downloaded from www.xmission.com.

Creating main window with GLUT

Tutorials will be translated soon.