PDA

View Full Version : glut?



bartbes
January 23rd, 2006, 10:35 PM
I want to program (with c++) in openGL, but I need glut... does anyone knows how to get glut, I've downloaden glutg3 and I already had glut3 and libglut3 why do I still get this error:
1.cpp:3:21: fout: GL/glut.h: Onbekend bestand of map

Viro
January 23rd, 2006, 10:59 PM
You need to install the package libglut3-dev to get the headers and necessary library files.

aeuo
September 12th, 2009, 07:35 AM
Hello!

ubuntu has
freeglut3 - OpenGL Utility Toolkit
glutg3 - the OpenGL Utility Toolkit
libglut3 - the OpenGL Utility Toolkit

what is the difference between them?

0xABC123
November 25th, 2009, 08:41 AM
Remove all other glut packages and install freeglut3 and freeglut3-dev.

Also, you should #include <GL/freeglut.h> instead of <GL/glut.h>, because <GL/glut.h> doesn't have some function prototypes such as glutMouseWheelFunc().

jespdj
November 25th, 2009, 09:59 AM
Guys, do you realize you're answering a question that was asked in February 2006? The OP is probably not still waiting for an answer...

dage
November 26th, 2009, 11:36 PM
thank you, I still find your answer userful for me

ghostcoil
January 23rd, 2010, 04:53 PM
I also found this post helpful, as old as it is : )

rachka
February 6th, 2010, 02:57 PM
thank you, i still find your answer userful for me

+1

Bruce!
February 7th, 2010, 12:07 AM
Yes, still helpful. Thanks.

CrammitTheFrog
February 22nd, 2010, 05:37 AM
I also found it helpful.

zendari
June 9th, 2010, 05:41 AM
I register new account from 2400 public
terminal in center market and risk
persecution from luddites to make post
saying how helpful this is to me. THank
you my friends.

steele64e
August 12th, 2010, 02:46 AM
still a great thread, it's the first result on google [glut ubuntu]

RandomLinuxUser
October 19th, 2010, 06:30 AM
This was very helpful to me thank you!

weeix
January 24th, 2011, 08:56 AM
thanks a lot :p

Simian Man
January 24th, 2011, 06:16 PM
Glut is OK for simple things, but way too restrictive for anything else. SDL and GLFW do the same things glut does much better.