Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get OpenGL man pages on Ubuntu as in "man glRotate"?

Tags:

manpage

opengl

When on MacOSX, "man glRotate" brings up the glRotate manpage.

On ubuntu, with manpages-dev and manpages-posix-dev insatlled, "man glRotate" doesn't bring up the glRotate manpage (though I can build and compile gl apps).

What am I missing? How do I setup this up?

like image 921
anon Avatar asked Mar 23 '10 02:03

anon


1 Answers

sudo apt-get install opengl-4-man-doc opencl-1.2-man-doc

contains many man pages, e.g.:

man glDrawArrays

but it does not contain man glRotate. I think this is because the deprecated immediate APIs are not included.

apt-file search glRotate shows a few hits, but they don't seem "official".

Tested on Ubuntu 16.04.