Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
6k views

gluPerspective was removed in OpenGL 3.1, any replacements?

I'm trying to read some OpenGL tutorials on the net. the problem is that I found some old ones that use gluPerspective(). gluPerspective was deprecated in OpenGL 3.0 and removed in 3.1. What function ...
5
votes
2answers
78 views

Add OpenGL libraries to software package

I have developed a scientific code package (for collisional/gravitational N-body simulations). It does not require any libraries to run. People can download it and simply type make to compile it. I ...
3
votes
3answers
653 views

How can I implement an accurate (but variable) FPS limit/cap in my OpenGL application?

I am currently working on an OpenGL application to display a few 3D spheres to the user, which they can rotate, move around, etc. That being said, there's not much in the way of complexity here, so ...
3
votes
2answers
167 views

OpenGL Problems When Compiling Across Linux Distributions

I recently wrote a maze game in opengl (using freeglut) that works fine when built in Ubuntu or Cygwin, but when built on Fedora Core 12 with freeglut, the game falls apart, and my professor can't see ...
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 ...
2
votes
1answer
52 views

Transform existing C++ openGL project from glut/freeglut to glfw

I want to upgrade my scientific 3D application from Freeglut to Glfw, but I worried about hidden conflicts or loss of data, Actually my application works like a charm with freeglut and I don't have ...
2
votes
1answer
288 views

OpenGL 3.1 lighting messed up, using phong shading

After many painful hours of attempting to figure out why my lighting is messed up I am still at a loss. The OpenGL normals are correct (backface culling does not cause any of my triangles to ...
2
votes
0answers
169 views

Drawing concurrently in multiple windows with GLUT

When I create two windows and redraw them in two different threads (one per window), it seems like all drawing goes to first created window. It constantly switches between what should be displayed in ...
2
votes
1answer
81 views

GLUT and C++ Classes

I've started using OpenGL a while ago, using GLUT. You can't pass member functions to GLUT functions. (or pointers to members for that matter, though I did not explore that option really far). I was ...
2
votes
1answer
696 views

glutBitmapString/glutStrokeString seem to require const unsigned char* - strings don't work

Ubuntu 11.04, G++, freeglut and GLUT. I don't understand this at all. Here's the error I get: whatever.cc:315:59: error: cannot convert ‘std::string’ to ‘const unsigned char*’ for argument ‘2’ to ...
2
votes
3answers
209 views

Using Objects into a Glut Display Function

i'm having trouble using an object in a glut DisplayFunction. class Modelisation { private: int hauteur, largeur, x, y; Camera *Cam; void DisplayFunction (); static void ...
2
votes
1answer
385 views

OpenGL particle system

I'm really new with OpenGL, so bear with me. I'm trying to simulate a particle system using OpenGl but I can't get it to work, this is what I have so far: #include <GL/glut.h> int main (int ...
2
votes
1answer
668 views

Problem when using glutStrokeString instead of glutBitmapString

I'm writing my first OpenGL-program (in C using freeglut). I have the following code in my display function, that works nicely and prints out a grey colored text: glColor3f(0.5f, 0.5f, 0.5f); ...
2
votes
3answers
3k views

Howto compile for Windows on Linux with gcc / g++?

I have written some effects in C++ (g++) using freeglut on Linux, and I compile them with g++ -Wall -lglut part8.cpp -o part8 So I was wondering if it is possible to have g++ make static compiled ...
2
votes
3answers
614 views

A project I'm assisting with is using freeglut for the client. Should I advise otherwise?

I'm involved in a development project that is using freeglut (based on the long defunct glut) for it's client. The client will eventually allow full interaction with a large-scale 3d environment. ...
1
vote
1answer
57 views

Can't get Freeglut to work with Haskell on Windows

Here is my source code I'm trying to get to work: In Main.hs: import Graphics.Rendering.OpenGL import Graphics.UI.GLUT import Bindings import Data.IORef main = do (progname,_) <- ...
1
vote
1answer
33 views

extern function prototype and static definition

I am working on getting FreeGLUT to build on OSX and am running into many instances of the same problem. Many of the functions exist only in the .c files. Here's an example extern void ...
1
vote
2answers
36 views

Calling glRasterPos2i and glutBitmapString in the presence of ModelView transforms

I'm trying to display a text-overlay (basically a help screen which shows my keyboard shortcuts) on top of a 3D Texture I'm rendering. The texture works great and I've got some east-to-use rotations ...
1
vote
2answers
86 views

freeglut.dll missing

I am reading the OpenGl superbible, and on the very first triangle program it will not run. the program compiles just fine but when i run it, it gave me the error message freeglut.dll is missing from ...
1
vote
0answers
32 views

Linux to Windows cross compiler glut library but no header confusion

On my linux setup I have a regular old dandy gcc tooset for linux and mingw32 for windows that i got from the debian repositories anyway I recently reinstalled linux and remember having everything ...
1
vote
1answer
52 views

CMake finds the correct library, but VC++ attempts to link with something else

I have a CMake module to locate FreeGLUT: FIND_PATH(FREEGLUT_INCLUDE_DIR NAMES GL/freeglut.h) FIND_LIBRARY(FREEGLUT_LIBRARY NAMES freeglut freeglut_static) SET(FREEGLUT_LIBRARIES ...
1
vote
1answer
116 views

FreeGlut does not work in ghci

I wrote a small program using the "Glut" import Graphics.Rendering.OpenGL import Graphics.UI.GLUT main = do (progname, _) <- getArgsAndInitialize createWindow "Hello World" mainLoop The ...
1
vote
1answer
49 views

object intersection overlapping in freeGlut

For the following code segement, my problem is that the two objects are intersected, but the views (lower figure) are not correct, object 1 (box) is inserted into the cylinder but the sideview (lower ...
1
vote
3answers
115 views

GL VBO issues: First and final strip of triangles not being displayed correctly

I'm not new to C++ nor OpenGL however I am new to using VBOs. Until now I've been lazy and just used display lists for mostly everything. My problem is most likely quite simple but it's annoying! It ...
1
vote
1answer
143 views

Sample program for “openSuse and openGL” environment

I have written a sample code like this in OpenSuse 11.3 (a very new installation) for openGL (installed all the libs that came up in search for openGL from the Software Manager of Yast2). **File: ...
1
vote
1answer
242 views

FunGen in Ubuntu

I've just installed Ubuntu succesfully, mainly to make it easier to work Haskell libraries than in Windows. When I run some Haskell code I was working on, it just knocks my socks off. I'm using ...
1
vote
1answer
62 views

opengl32.dll is not needed by VS 2010

The code as follows: #include <GL/glut.h> GLfloat light_diffuse[] = {1.0, 0.0, 0.0, 1.0}; /* Red diffuse light. */ GLfloat light_position[] = {1.0, 1.0, 1.0, 0.0}; /* Infinite light ...
1
vote
0answers
189 views

Accepting Keyboard Input with Glut

I'm using Freeglut to design some basic games. However, I have been having some issues with keyboard input. In some previous games I made, I had did something like this: (pseudocode) class Key { ...
1
vote
1answer
193 views

How to make Haskell GLUT using freeglut on Windows?

How to make the Haskell GLUT binding using freeglut instead of the original GLUT on windows?
1
vote
2answers
360 views

How do I configure freeglut to work with Code::Blocks

I would like to know how to configure freeglut to work with the Code::Blocks IDE and minGW compiler. I don't have much experience with Code::Blocks and I have tried both glut and freeglut for ages. ...
1
vote
6answers
584 views

Removing console window for Glut/FreeGlut/GLFW?

Under Visual C++, I have played around with Glut/FreeGlut/GLFW. It seems that everyone of these projects adds a CMD window by default. I tried removing it going under: ...
1
vote
2answers
300 views

Using Glew in multiple files

Somehow I can't get Glew in multiple header files. It is just complaining about Gl is already defined before GLEW. I have the following file structure in short: Program.h includes: ...
1
vote
3answers
475 views

Callback function in freeglut from object

I'm using MSVC++ and freeglut in order to use openGL. Now, I have a class called Camera, which is pretty simple, but it also holds the function for the reshaping of my window. My question is: how can ...
1
vote
3answers
1k views

OpenGL textures appear just black

I am trying to apply a texture to a quad, but I only get a black box instead of the texture. I am using DevIL to load images from files and OpenGL does the rest. Here is what I am doing so far: The ...
1
vote
1answer
259 views

glutHideWindow and glReadPixels on OS X

On a MAC OS X machine, I am using FBO, depth RBO and texture RBO with freeglut to render a 3D scene to FBO and doing a render to texture. All using standard glut functions and glutMainLoop at the end. ...
1
vote
1answer
234 views

sdl app segfaults on sdl_gl_setattribute

I'm trying to compile this example and play around with it a bit. I've already corrected the main error the people were having with this example where they would call sdl_gl_setattribute before ...
1
vote
1answer
273 views

Using FreeGLUT, how can I create an OpenGL window, specifying both title and screen location?

The FreeGLUT API has several functions for window management: int glutCreateWindow(const char * title ); int glutCreateSubWindow(int window, int x, int y, int width, int height); void ...
1
vote
1answer
524 views

freeGLUT keyboard input

I'm using GLUT (freeglut3) (via the Haskell GLUT bindings). import Graphics.UI.GLUT handleKBMouse :: KeyboardMouseCallback handleKBMouse key keyState mods mousePos = do print (key, keyState, ...
1
vote
1answer
390 views

Getting X window id for GLUT program? or, How to remote control a GLUT program on X?

I want to send a keystroke to a GLUT program on X11, but I can't find there's an X11 client attached to the GLUT program. I do this, using the most excellent demo program for the chipmunk 2d physics ...
1
vote
1answer
435 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 to do this is to ...
0
votes
1answer
16 views

Using glDrawElements to draw object from WRL (VRML) file

I'm trying to model an object described in a WRL (VRML) file using OpenGL. I'm not really concerned with parsing the file, I figure that part will be fairly straight forward. At this stage I am just ...
0
votes
0answers
45 views

Building box2d testbed application in eclipse with MinGW

This post: How would I build Box2D to work in Code::Blocks/Mingw32(Windows) and this site: http://www.transmissionzero.co.uk/computing/using-glut-with-mingw/ have helped a lot in my attempts to build ...
0
votes
2answers
33 views

Linking freeglut with Qt Creator in Linux

I currently run Arch Linux on my laptop and was hoping to know why Qt Creator isn't finding my glut library (which exists on my system). My setup qmake file looks as follows: ... /*sources ...
0
votes
1answer
35 views

Monodevelop and GLUT issues

Im having an issue using GLUT with monodevelop. Im using the following code: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <GL/glew.h> #include ...
0
votes
0answers
10 views

GLUT: adding menu entries at runtime

I have a scene to which I add and manipulate objects (I'm making a renderer). I want every camera/object I add to appear on a submenu. I'm using freeglut. I currently just call the initMenu() ...
0
votes
3answers
43 views

OpenGL gives Invalid Image Format

I have an Invalid Image Format error which crops up from opengl. I'm not sure if it's because I'm using precompiled headers, or if I'm just not initializing OpenGL properly. As far as I know, I am not ...
0
votes
0answers
35 views

Freeglut links improperly

When I try to compile my program, I immediately get flooded with errors which, where I can't post them all, posting a few of these hopefully should give you a good idea of what's going on. I'm using ...
0
votes
0answers
84 views

Different rendering for glut vs. freeglut

I have written a program using "regular" glut, and it runs fine. When I switched to freeglut, nothing was displayed to the screen. Changed back glut and everything was fine again. What could be ...
0
votes
1answer
86 views

freeglut's glutStrokeString giving a “stroke font not found error”

I am trying to use glutStrokeString using freeglut. The program runs fine up to the point it has to call glutStrokeString, then it outputs the console freeglut stroke font not found. Any idea why?
0
votes
0answers
34 views

Build Time in Visual C++ Express [closed]

I recently built a new PC and I upgraded from an Intel 920 to the newer Intel 2600k, however, my build times for visual C++ projects have gone way up. I've been searching around and can't find out ...

1 2