Where can I find all the functions of glut?

Do you know a link about glut that shows all the functions?
I tried and found a few. No more!

I want to create a window with “glutCreateWindow” function without any border and without title bar.

[This message has been edited by serbet (edited 05-15-2003).]

Hi,

I think this place has all: http://www.opengl.org/developers/documentation/glut/spec3/spec3.html

As per the other poster you can find all of the glut functions on this site.
Just use the link he provided.

Also because GLUT was made simple to use, it has very limited windowing options.
So you can not do much to the title bar under glut other then change the name.

I am not sure what other tool kit offers the option to remove the title bar.

Originally posted by serbet:
[b]Do you know a link about glut that shows all the functions?
I tried and found a few. No more!

I want to create a window with “glutCreateWindow” function without any border and without title bar.

[This message has been edited by serbet (edited 05-15-2003).][/b]

for what you want, use glutFullScreen or glutGameMode functions.

enjoy