What Is OpenGL? OpenGL is a Graphics rendering API which is operating system independent, window system independent and has high-quality [.]. How to update OpenGL Driver on Ubuntu. It seems like you are running the 32-bit version of Ubuntu. To get a slightly newer version of the OpenGl drivers.
I need help setting up OpenGL and SDL on Ubuntu. Is Ubuntu ideal for this kind of graphics development? I have CodeBlocks IDE for C/C++ and I have downloaded the SDL 1.2 libraries. What I am having a hard time to do is to install OpenGL. What are the step that I have to follow?
jww2 Answers
To setup OpenGL and SDL you should open the terminal and issue the command:
This will install the basic libraries you need to run OGL/SDL applications, after entering the root password.I suggest you to google for synaptic and learn how to use it.
Linux is always a good place to develop something.
What I am having a hard time to do is to install OpenGL
Technically OpenGL is just a specification, implemented by your graphics driver. There's no such thing like a OpenGL SDK library. There's just libGL.so coming with your driver. To use it, you need bindings for your programming language of choise. If that is C, the 'bindings' consist of just the header files. However you'll probably also want to use OpenGL extensions, which a easiest used using GLEW.
So I suggest you install the GLEW development files, all the other dependencies (including the OpenGL headers) will be pulled in by the package manager:
datenwolf