Tagged Questions

The [Open]GL Utility Toolkit (GLUT) is a utility library for OpenGL applications to put the platform-dependent details (e.g. creating windows and responding to mouse events and key presses) under one hood, in an easy and portable way. The original GLUT has not been maintained for about a decade, but there exists a current, maintained alternative named freeglut.

learn more… | top users | synonyms

34
votes
13answers
4k views

Getting started with OpenGL

As you can see here I'm about to start work on a 3d project for class. Do you have any useful resources/websites/tips/etc. on someone getting started with OpenGL for the first time? The project will ...
14
votes
4answers
3k views

Is GLUT dead?

After reading a discussion on Ubuntu Forums concerning GLUT vs. FreeGLUT. Is GLUT dead for graphics programming? Is SDL all the rage now for OpenGL programming?
11
votes
7answers
8k views

Initializing OpenGL without GLUT

every introduction and sample that I can find seems to use GLUT or some other framework to "initialize" OpenGL. Is there a way of initializing OpenGL with just what is available in GL and GLU? If ...
10
votes
1answer
8k views

Using GLUT bitmap fonts

I'm writing a simple OpenGL application that uses GLUT. I don't want to roll my own font rendering code, instead I want to use the simple bitmap fonts that ship with GLUT. What are the steps to get ...
9
votes
4answers
25k views

How do I draw text with GLUT / OpenGL in C++?

How do I draw a text string onto the screen using GLUT / OpenGL drawing functions?
7
votes
2answers
164 views

GLUT Alternatives for Haskell?

I don't want to use GLUT, because it does not have a Haskell-like feeling on it. It basically forces you to use IORef and such, because of the callbacks. I've considered GLFW, which seems simple and ...
7
votes
3answers
5k views

Getting smooth, big points in OpenGL

I started playing with OpenGL and GLUT today. I would like to draw some points, but the problem is that they turn out to be squares, and I would like them to be round dots (filled circles). This is ...
7
votes
2answers
9k views

Using the mouse scrollwheel in GLUT

I want to use the mouse scrollwheel in my OpenGL GLUT program to zoom in and out of a scene? How do I do that?
7
votes
2answers
9k views

Using GLUT with Visual C++ Express Edition

What are the basic steps to compile an OpenGL application using GLUT (OpenGL Utility Toolkit) under Visual C++ Express Edition?
6
votes
2answers
94 views

Why does my color go away when I enable lighting in OpenGL?

I am developing a graphics application in C++ with the OpenGL API and GLUT. To add lighting, I made the following changes in my modelview matrix: glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); // ...
6
votes
4answers
4k views

OpenGL and GLUT in Eclipse on OS X

I have been trying to setup the OpenGL and GLUT libraries in Eclipse, with CDT, on OS X with not very much success. I cannot seem to get eclipse to actually realize where GLUT is. It is currently ...
6
votes
6answers
465 views

OpenGL for space simulators

with a few friends we started this amateur platform-independent java-based project for a space combat simulator game (something like the long dead saga of wing commander). None of us though is a 3D ...
5
votes
5answers
256 views

What is most commonly used as a window manager for OpenGL nowadays?

Glut seems rather old, and SDL also as if it's not the youngest anymore - what is being used as (cross-platform) window manager for OpenGL nowadays?
5
votes
2answers
475 views

difference between SDL and GLUT

I am learning the Opengl graphic programming at Eclipse. Can someone tell me the difference between GLUT application and SDL application, so that I can dig into either one of them? Tks.
4
votes
2answers
81 views

OpenGL - selective world rendering

I'm building a miniature city with the basic minimum looks of a city (roads,buildings,trees etc) where u can move around. I know that rendering the whole model set in each frame doesn't work... So ...
4
votes
1answer
183 views

Why is GLUT so bad?

I've seen a lot of bad comments about GLUT, although openFrameworks uses it. Cinder developers have stated that they want to stay as far away from GLUT as possible... So what's so bad about it?
4
votes
3answers
111 views

OpenGL - Rotate a 'Curve' About the Y-Axis

As per my question on Math Stackexchange: I am working on a project for my 3D Graphics class. The project is built with C++ and OpenGL / Glut. Basically, I create a horizontal rectangle window, ...
4
votes
2answers
98 views

OpenGL+GLUT Not filling Topmost-Leftmost Polygon?

I'm encountering a strange OpenGL Bug. OpenGL is pretty new to me, but we're required to use it in my AI class (because the teacher is really a Graphics professor). Either way, this is happening: ...
4
votes
1answer
210 views

HOpenGL - OpenGL window remains minimized

Following some well-known OpenGL Haskell tutorial, I've made my first HOpenGL program. Here's the code: import Graphics.Rendering.OpenGL import Graphics.UI.GLUT main = do (progname, _) <- ...
4
votes
3answers
525 views

Learning OpenGL without GLUT?

I have yet to find a good resource that doesn't include GLUT as it's back-end. Sure there's the Nehe tutorials, but I find those a bit obscure. It uses the Win32 API, yet I want to perform ...
4
votes
1answer
1k views

What is the nicest way to close GLUT?

I'm really having trouble closing my console application with GLUT (freeglut). I would like to know what the best way is to take every possible closing, because I don't want any memory leaks (I'm ...
4
votes
1answer
782 views

SDL vs GLUT in opengl 3D programming

I'm beginning a series of tutorials on SDL. Before I dig too far, I'd like to know what type of control SDL gives me over GLUT? Also, do either support webcam access (for face tracking or motion ...
4
votes
2answers
1k views

Rendering fire in OpenGL

I want to render a fire effect in OpenGL based on a particle simulation. I have hundreds of particles which have a position and a temperature (and therefore a color) as well as with all their other ...
4
votes
3answers
1k views

Drawing many spheres in OpenGL

I want to draw many spheres (~100k) using OpenGL. So far, I'm doing something like for (int i=0; i<pnum; i++){ glPushMatrix(); glTranslatef(bpos[i].x, bpos[i].y, bpos[i].z); ...
4
votes
1answer
1k views

OpenGL with GLUT on windows 7, fullscreen mode not showing the message box

I wrote an OpenGL app in C++ a while ago, back when my operating system was Windows XP. I used GLUT (plane ol' version) to show the window and also used full screen mode. There are times when I ...
4
votes
1answer
1k views

Using OpenGL /GLUT how would I detect if two keys are held down at the same time?

Using OpenGL /GLUT how would I detect if two keys, say 'a' and 'j' are held down at the same time? (This program needs to compile with OSX GCC, Windows GCC, Windows VS2005 so no OS dependent hacks ...
4
votes
1answer
3k views

Resizing an OpenGL window causes it to fall apart

For some reason when I resize my OpenGL windows, everything falls apart. The image is distorted, the coordinates don't work, and everything simply falls apart. I am sing Glut to set it up. //Code to ...
4
votes
6answers
3k views

OpenGL Rotation

I'm trying to do a simple rotation in OpenGL but must be missing the point. I'm not looking for a specific fix so much as a quick explanation or link that explains OpenGL rotation more generally. At ...
4
votes
2answers
5k views

GLUT exit redefinition error

In my simple OpenGL program I get the following error about exit redefinition: 1>c:\program files\microsoft visual studio 8\vc\include\stdlib.h(406) : error C2381: 'exit' : redefinition; ...
3
votes
2answers
34 views

How to control finely the glut inner loop

I would like to control the main loop in a glut program, I would like to better understand what is the order of execution of the following callbacks: glutDisplayFunc(drawGLScene); glutIdleFunc(idle); ...
3
votes
1answer
202 views

Set background image of an openGL window

I am trying to set a background image of my openGL window by creating a quad on an orthogonal projection matrix and adding texture to it. I am also making use of GLUT toolkit in my application. ...
3
votes
3answers
66 views

redefining or adding a classes member function dynamically/ during execution

Hey i'm trying to make a very simple GUI using SFML, and i want to be able to attach a function to my Button class in the constructor, as so the user can define what happens when the button is ...
3
votes
2answers
180 views

How to reclaim memory after glutMainLoop is activated?

According to OpenGL documentation, 3.1 glutMainLoop glutMainLoop enters the GLUT event processing loop. Usage void glutMainLoop(void); Description glutMainLoop enters the GLUT event processing ...
3
votes
3answers
228 views

In OpenGL, can I draw a pixel that exactly at the coordinates (5, 5)?

By (5, 5) I mean exactly the fifth row and fifth column. I found it very hard to draw things using screen coordinates, all the coordinates in OpenGL is relative, and usually ranging from -1.0 to 1.0. ...
3
votes
2answers
260 views

Portable toolkit library for creating OpenGL applications

I am new to OpenGL and I have been doing some tutorials utilizing GLUT. GLUT seems to be quite clunky and "old-fashioned" (if you know what I mean :D) so I am asking if there are a bit more ...
3
votes
2answers
1k views

Constant game speed independent of variable FPS in OpenGL with GLUT?

I've been reading Koen Witters detailed article about different game loop solutions but I'm having some problems implementing the last one with GLUT, which is the recommended one. After reading a ...
3
votes
3answers
894 views

OpenGL Superbible first program crashes

It doesn't run, obviously. Code is copied directly from the provided source. I put the libraries and headers where I was told. Running it results in some sort of crash. I asked a few people to run ...
3
votes
3answers
1k views

Opengl drawing a 2d overlay on a 3d scene problem

I have a moving 3d scene set up, and I want to make a stationary 2d GUI overlay that is always on top, when I try making 2d shapes I don't see anything. When I call: glMatrixMode(GL_PROJECTION); my ...
3
votes
1answer
575 views

How to create static background image in OpenGL(GLUT) scene?

I create some scene, and i would like to display some static background image, which would not change from how and what I am doing with the scene.
3
votes
7answers
486 views

Question about running a program at same speed in any computer

I made a program (in C++, using gl/glut) for study purposes where you can basically run around a screen (in first person), and it has several solids around the scene. I tried to run it on a different ...
3
votes
2answers
1k views

Center an OpenGL window with GLUT

I have an openGL window that is 640x480 that I need to center in the middle of the screen. I previously used: glutInitWindowPosition((GetSystemMetrics(SM_CXSCREEN)-640)/2, ...
3
votes
3answers
1k views

OpenGL / C++ / Qt - Advice needed

I am writing a program in OpenGL and I need some sort of interfacing toolbar. My initial reactions were to use a GUI, then further investigation into C++ I realized that GUI's are dependent on the OS ...
3
votes
1answer
3k views

How can I change the position of the mouse cursor in OpenGL/Glut?

I'm writing a simple game and I'm going to have the mouse control the camera (using GlutPassiveMotionFunc). I'm going to pitch and yaw based off the mouse difference between callbacks, however I ...
3
votes
2answers
2k views

Create a Chrome cube in OpenGL / Glut?

I'm attempting to make a chromed cube in GLUT / OpenGL and I'm not sure exactly how to do it. I looked up a "Materials Table" in a textbook which showed "Chrome" as being: Ambient: (0.25, 0.25, ...
3
votes
5answers
4k views

How to draw a filled envelop like a cone on OpenGL (using GLUT)?

I am relatively new to OpenGL programming...currently involved in a project that uses freeglut for opengl rendering... I need to draw an envelop looking like a cone (2D) that has to be filled with ...
3
votes
1answer
3k views

GLUT pop-up menus

Is it easy to create GLUT pop-up menus for my OpenGL application? If yes, how?
2
votes
1answer
27 views

avoiding global variables while using GLUT

GLUT is a great API and it's very easy to use but I am having some difficulty with how it handles scope. When defining callbacks there is no option to pass parameters so it seems to me as though the ...
2
votes
2answers
59 views

How to get ready a C++ project with OpenGL, Glut and Visual Studio 2008 in Windows 7

As I had many problems setting Visual Studio 2008 for using OpenGL I will ask this question that can be useful to some people: Which are the steps to follow in order to use OpenGL with C++ in ...
2
votes
2answers
85 views

OpenGL skips main function on visual studio

I am trying to run the following c++ opengl code in Visual Studio 2010. I am using openglut as opengl utility toolkit. #include <iostream> #include <gl\openglut.h> using std::cout; using ...
2
votes
3answers
55 views

glReadPixels store x, y values

I'm trying to store pixel data by using glReadPixels, but so far I managed to only store it one pixel at a time. I'm not sure if this is the way to go. I currently have this: unsigned char pixels[3]; ...

1 2 3 4 5 9