0
votes
1answer
89 views
OPENGL Keyboard Camera Controls
Hey guys, I have been following this tutorial series for OpenGL: GLUT
http://www.lighthouse3d.com/opengl/glut/
I have reached the stage of implementing camera controls using the …
1
vote
3answers
43 views
Opengl irregular shape color filling
I am drawing a 5 corner star with GL_LINES. When I use the GL_POLYGON, it distorts the shape of star and connects the first and last vertex. Help please :( ?
3
votes
3answers
145 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 …
0
votes
2answers
75 views
Basic Open GL/GLUT Issue
I am studying graphics and currently using OpenGL with GLUT. Doing my editing in codeblocks and using an online tutorial located at lighthouse3d. I am using the main method declare …
3
votes
3answers
1k 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' : red …
4
votes
4answers
2k 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?
0
votes
1answer
66 views
CreateTexture loading bitmap problem
I have the following function it takes 3 arguments being a texture array, filename and texture id but when I invoke the function using:
CreateTexture(g_Texture, "\\\\nsq021vs\\u2\ …
0
votes
2answers
79 views
How do I give GLUT cubes different colors?
Just what it says: I have some code that's drawing GLUT cubes, but they're all grey. How do I make them different colors?
Everything I've tried so far has failed. I think my pr …
1
vote
1answer
36 views
glutPostRedisplay in a different thread
I have a standard glut implementation. The display function redraws each object, but I need a constant update on certain values of each object. As it is, the only way I can think t …
0
votes
2answers
64 views
Glut: how to know when the window is moving?
Hi,
I have a problem with glut, I would like to have a callback to know when the user is moving the window of my application, and I didn't found anything in glut.
My goal is to m …
0
votes
2answers
67 views
C2664 error in an attempt to do some OpenGl in c++
Here is an abstract of my code. I'm trying to use glutSpecialFunc to tell glut to use my KeyPress function
class Car : public WorldObject
{
public:
void KeyPress(int key, int x, …
1
vote
3answers
234 views
Getting smooth, big points in OpenGL
Hi SO,
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 …
0
votes
0answers
41 views
GLUT for newbies/ help whit refacoring
I had need on making PC emulator for developing monochrome LCD. After googling I found forum (can not remeber where) and sample code using GLUT. Current emulator look like this.
…
1
vote
8answers
1k 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?
0
votes
1answer
189 views
using wxWidgets in a GLUT/other application
I'm basicly looking to get a native-like window GUI system into my OpenGL/Game. I need to display a single window to the user.
I'm looking into wxWidgets.
Because it works by "st …
