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.
-1
votes
0answers
20 views
Glut subwindow toggle
I have a program and i have created a subwindow from my main window. The problem is that its always there, my goal is to press a key and then get that subwindow "on" and when i press it again , to ...
0
votes
0answers
5 views
GLUT - how to smoothly translate a ball?
I'm making a ball in a field that may moves only right or left based on keyboard input. Here's the full code:
#include <windows.h> //for Sleep(...) functionality
#include <stdlib.h>
...
-4
votes
1answer
39 views
OpenGL Glut with C++ Class [closed]
I and my friend are doing a game with GLUT library with c++.
We splitted the problems; I am dealing about the game and my friend about the menu. Both we wrote in a cpp file with display, keyboard and ...
0
votes
1answer
39 views
Orthogonal projection, drawing square in OpenGL 2.0
I'm having troubles with proper drawing squares. I'm using glut and glew on Windows 7 x64.
I can see only a black square(WALL in my app) in the right top corner.
I'm trying to draw a labyrinth with ...
0
votes
1answer
31 views
User Input in OpenGL
So I'm creating a simple game (in this case it's a asteroid clone game) and while i press "Start Game" in my Menu section I get to this window:
Now I want to put my nick in that frame but I have no ...
0
votes
0answers
23 views
glew warnings, problematic compilation in CodeBlocks
Recently, I have finally managed to compile simple glut project on Windows using GLEW libraries. But I have two problems:
1.When I do Build->Clean and then Build->Build I get about 3000 warnings like ...
0
votes
2answers
52 views
Cannot include <IOStream> or it crashes
I am using eclipse with C++ and opengl. However in my program I cannot use #include or I get the following error The program file specified in the launch configuration does not exist ...
-1
votes
1answer
47 views
OpenGL - sphere shrinking and expanding
I'm revising for an OpenGL exam and keep coming across this question on past papers. It's not something I've been taught and I was wondering if anyone could set me off in the right direction.
Sorry I ...
-2
votes
3answers
41 views
gluLookAt in reshape function
This is how my reshape func looks like
`void Reshape(int w, int h)
{
const float ar = (float)w/(float)h;
glViewport(0,0,w,h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity(); ...
2
votes
1answer
46 views
OpenGL with dual monitors
I want to develop one OpenGL application that is using the two monitors for display. However, if I specify the window size in glutInitWindowSize() to be the size which is the sum of the two monitors, ...
0
votes
0answers
37 views
FreeGLUT linking option
I started a project with Ubuntu 12.04 LTS (64bit machine), and I installed freeglut3 and freeglut3-dev. and other gl libraries installed by using nVidia's driver installer (it must be 32 bit ...
0
votes
1answer
70 views
Opengl obj object loader with textures
I am using an object loader to load an obj model that I exported from blender. I can load the model but none of the textures are loaded and I don't know why. Should they be loaded when I render the ...
1
vote
1answer
55 views
Drawing stripes in OpenGL (C++)
I'm following the xoax.net tutorials for OpenGL in C++, and I am stuck on drawing the stripes in the U.S. flag using a for loop. I just get a blue screen (since I set the background colour to blue). ...
0
votes
0answers
76 views
When using <iostream> it crashes
I am using eclipse with C++ and opengl. However in my program I cannot use #include or I get the following error
The program file specified in the launch configuration does not exist
...
0
votes
0answers
29 views
Using glut with code blocks in Windows 7
i'm a total novice with OpenGL, and I have to compile a file (my first file using opengl), the headers of the file are :
#include <GL/glut.h>
#include <GL/gl.h>
#include <iostream>
...
1
vote
0answers
28 views
OpenGl glut textures doesnt draw
I am developing a project using GLUT, and when i want to use GlTexture, to add a texture, it only works if the height and width are base 2(2^n, ex: 128-64,256-256...). Someone here experienced the ...
0
votes
1answer
20 views
Objective C glutDisplayFunc with method
How can you use a Objective C method as an argument for glutDisplayFunc (and functions like it)? I'm quite new to ObjC, so I don't completely know how this works
In C++, you can just pass in a void, ...
0
votes
0answers
17 views
nothin appears in the window created from basic C code using glut library on fedora 15
I am trying to create a basic window with black background using glut library on fedora 15.
when execute the code, i simply get a window which has taken background as a screenshot of my original ...
0
votes
0answers
27 views
Glut wchar_t redeclaration
This question isn't a duplicate. I have searched the web for around 4 hours and found nothing. I am using codeblocks ide and when I try to compile my glut app, it says include file:
...
0
votes
1answer
33 views
Low level windowing API for OS X
I am looking for a low level windowing API for OS X that creates (or allows me to easily create) an OpenGL context. I have tried GLUT, GLFW, SDL, and the Cocoa windowing system, but they all have some ...
-1
votes
0answers
69 views
In CL-OPENGL how do i move the camera(glu:look-at) with a key-press
My code is below....
Im trying to move the camera i\e change the glu:look-at parameters with a key-press.
I wrote a 2 functions move-right that increments the variable eye-x in my code and move-left ...
0
votes
0answers
43 views
Draw object in front of camera
I am in the process of working on a small first person shooter style game, however I am having trouble drawing the weapon directly in front of the camera. Now, this question is fairly common, however ...
1
vote
2answers
54 views
glDrawElements() draw my .obj models wrong
I'm having a problem with the "glDrawElements" function in OpenGL. When drawing the model with the function I'm seeing artifacts:
I didn't add any light or texture.
I wrote a class with C++:
...
0
votes
2answers
34 views
Deleting global object in game.(C++)
I am making a Bubble Pop game in C++ where the user clicks on randomly generated Bubbles that float up the screen(still very much in development). In order to Use OpenGl and Glut with this game I ...
-1
votes
0answers
43 views
Please explain what exactly is happining in the Flet portion of the (defmethod glut:keyboard) of the following Common Lisp CL-OpenGL code
Here is the DefMethod I'm refferring to below....the entire code this came from is below the DefMethod. Basically I'm trying to change this (defmethod glut:keyboard) so I can add.....basically I have ...
0
votes
0answers
37 views
Project Compilation Error - ld.exe cannot find glut32.lib
I'm desperately trying to configure glut with the Eclipse CDT plugin and have been failing to do so for the past couple hours. I downloaded the most recent version of glut here. And have placed the ...
0
votes
0answers
31 views
glutCreateMenu() long loading why?
I have developed an OpenGl program that is displaying me some nice objects. As i wanted to include interaction on it, i have decided to use glutCreateMenu().
The code relating to menu creating on ...
0
votes
1answer
59 views
Can't figure out how to install GLUT dll/header properly
I recently installed the latest version of GLUT (3.7). However, when I run the following simple program, it tells me that it cannot find the glut.dll:
#include <iostream>
#define ...
-4
votes
1answer
135 views
Good opengl tutorial
I'm looking for a good opengl (using glut) tutorial. Of course questions like this one have been already asked before on SO. I asked one myself once, and you recommended me a couple of them.
The ...
0
votes
1answer
60 views
Java input on OS X, no key repeat, but with glut yes
I've been a few months playing with OpenGL and glut in C++ on OS X. I'm now trying to use Java (using JOGL) with OpenGL, but I can't figure out this problem.
With glut, if I press a key and keep it ...
1
vote
1answer
72 views
“Package GLUT does not exist”, even though cl-opengl installed in Arch Linux
I have emacs configured with SLIME for developing in Common Lisp (sbcl) on Arch Linux. The thing is, I now want to start working with OpenGL as well, so I've installed cl-opengl to provide the ...
1
vote
1answer
50 views
OpenGL multiple subwindow problems
I am having a problem with my GL code. I'm running on an Ubuntu 12.10 platform and I'm trying to render vertex array data in two sub windows I've created. I create a main window and then right after ...
-1
votes
1answer
79 views
simple OpenGL/GLUT program not compiling on Windows
I am trying to compile a simple application using GLUT on Windows. On Linux, it compiled with no errors. On Windows, I tried Visual C++ Express 2010 and CodeBlocks and got same errors on both. I added ...
0
votes
1answer
109 views
I've rendered a shere to the Glut Window now how do I make it move around with the keyboard? [closed]
Cutting and pasting the cl-glut-examples code I rendered a sphere to the display. Now how do I move It on a x,y and z axis using the keyboard. Also is there an online resource to learn game ...
1
vote
3answers
126 views
detect mouse clicks in OpenGL C++
I am a beginner at OpenGL and I am trying to create a game in which as background I have a raw image. When the game starts I display that image and I want to be able to click on it and to display ...
0
votes
0answers
22 views
GLUT mouse clicks detection
I designed a picture and set it as a background for a window. What I want is that the bits of the picture act as buttons, for example if I use the screenshot of the desktop as a background image for ...
0
votes
1answer
64 views
opengl - flash of light (like when shooting)
I'm trying to create flash of light (like when someone is shooting). For e.g. (it's from real video, but i need something similar, much more simpler):
I need to do this using only OpenGL - can't ...
0
votes
1answer
38 views
Can I point my project to a locally stored glut.dll?
I have a c++ opengl project that uses glut. It runs fine in my computer, but I need to be able to run it on a lab computer. When I try to do this, it tells me the glut.dll is not installed, but I do ...
0
votes
1answer
137 views
opengl - how to put texture on 3d irregular object
I have to create animation where gatling gun will be shoot (it doesn't have to be complex, cause it's just a practice). I drew basic version of my gun which looks like this:
Don't bother colors - i ...
-2
votes
1answer
96 views
OpenGL interface - background texture/image
I am currently developing a game similar to "Who wants to be a billionaire", the type of game where you are asked a question and you are given several answers from which you have to choose. I designed ...
1
vote
2answers
60 views
Make objects appear to vibrate in OpenGL
What is the best way to make objects appear to vibrate in OpenGL?
I have a collection of cubes which I want to "vibrate" with varying intensity, and I'm assuming the best way to do this is to just ...
0
votes
1answer
50 views
can't properly disable gl color material
I have scene with lighting that works fine. I want to addd a sky box that will fade away, so i am using
glEnable(GL_BLEND)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
along with glColor4f to ...
-1
votes
1answer
60 views
Add 3D objects outside glutDisplayFunc() in OpenGL [closed]
I am trying to create spheres at random locations on a 3D coordinate system, I create the spheres from the display function. I call the method which creates these spheres, using rand() fun for ...
-2
votes
2answers
113 views
How to run a basic “Hello World” GLSL program in windows? [closed]
I am trying to run a GLSL program from this site and getting this error as below. What are the basic libraries I need to install excluding opengl? I need this in Windows machine.
main.cpp:72:30: ...
0
votes
1answer
39 views
Can I make an OS X Glut app that doesn't open a terminal window?
I have a lot of simple C++ programs that I've written in XCode, using OpenGL and Glut to visualise scientific data. It works very well, but there is one minor annoyance: every time I run one of the ...
2
votes
1answer
65 views
Issue with glPolygonMode - GL_FILL “skipping” vertices
I'm having a weird issue when trying to draw a polygon and filling it with a particular color:
If I set the polygon mode as:
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
The polygon renders just ...
0
votes
2answers
111 views
How to change the color of points using shaders
I have an application where I draw a bunch of points on a GLUT window. I have a vertex shader and a frag shader, which I gave a color input. My vertex shader looks like:
#version 120
attribute vec2 ...
0
votes
1answer
176 views
Glut in Dev C++ error “redeclaration of C++ built-in type `short'”
I am beginner to GLUT in C++. I am using Dev C++ as my IDE. I have this simple triangle drawing code and it produces an error "redeclaration of C++ built-in type short ". But When I put ...
0
votes
1answer
137 views
glutInitContextVersion
I'm having some trouble with freeglut's "glutInitContextVersion" function.
When I'm using 3, 1 as parameters, my geometry is drawn. However when I use 3,3 (which is the highest version of OpenGL my ...
0
votes
1answer
48 views
Simulating a Jump with keyDown Glut C++ not 100%
I'm controlling a sprite on screen using glutkeyboardfunc and keyDown's.
Eg. When I implement the following code the sprite successfully jumps up:
if(keyDown[119]){//w key = up
sprite_y ...





