Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/softvar/opengl
Great collection of useful utility programs in openGL(c++)
https://github.com/softvar/opengl
Last synced: 4 days ago
JSON representation
Great collection of useful utility programs in openGL(c++)
- Host: GitHub
- URL: https://github.com/softvar/opengl
- Owner: softvar
- License: mit
- Created: 2013-07-27T14:48:58.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-28T12:06:49.000Z (about 11 years ago)
- Last Synced: 2024-05-02T00:02:17.348Z (7 months ago)
- Language: C++
- Size: 113 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
Working with OpenGL
===================OpenGL (Open Graphics Library) is a cross-language, multi-platform Application programming interface (API) for rendering 2D and 3D computer graphics. The API is typically used to interact with a Graphics processing unit (GPU), to achieve hardware-accelerated rendering.
What this is for
----------------Great collection of useful utility programs in openGL(c++).
Installation In Ubuntu
----------------------.. code-block:: bash
sudo apt-get install freeglut3 freeglut3-dev libglew1.5 libglew1.5-dev libglu1-mesa libglu1-mesa-dev libgl1-mesa-glx libgl1-mesa-dev
Include header files
--------------------.. code-block:: c++
#include "GL/glut.h"
#include "GL/gl.h"Compilation
-----------.. code-block:: bash
g++ -o filename filename.cpp -lglut
References
----------
http://www.glprogramming.com/red/