-1
votes
1answer
28 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 ...
-4
votes
1answer
41 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
48 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
36 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
2answers
59 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
51 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
1answer
52 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
43 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
95 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
56 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
33 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
34 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
22 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
21 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 ...
-1
votes
0answers
74 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
46 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
61 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
36 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
45 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
34 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
63 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
169 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
61 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
51 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
89 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
112 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 ...
0
votes
1answer
67 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
145 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
101 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
64 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
53 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
63 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
120 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: ...
2
votes
1answer
69 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
118 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
190 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
143 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
93 views

How can I write a text in GLUT? [duplicate]

How can I write text in GLUT and C++?
1
vote
1answer
57 views

Is there a way to wait the last command to GPU before next command?

I have the following code in the display: (it's the whole display func, and the data changes in the idle func) glClear(GL_COLOR_BUFFER_BIT); glDrawPixels(100,100,GL_RGBA,GL_FLOAT,data); ...
1
vote
1answer
211 views

opengl display shape and draw text

Basically I have a basic shape which is controlled by the keyboard to be manipulated. And I also have text which I want to render on to the screen saying "Hello world". However whenever I go to run it ...
0
votes
0answers
114 views

glut.h error when testing glut in code blocks

When trying to build a project using glut I get an error. Not in the main.cpp but rather in the glut.h I've included. #pragma comment (lib, "winmm.lib") /* link with Windows MultiMedia lib */ ...
3
votes
2answers
92 views

Collision Detection works but has small glitch?

I have written a small program that when implemented stops a small square passing through a larger rectangle. When the collision() function is called it checks whether or not the shapes are ...
1
vote
1answer
111 views

Camera Rotation using lookAt

Hey guys I am trying to do a Camera class that uses lookAt from glm library. I have 4 points, the first one is eye, that is the camera position in space, the second one is the look, that is the point ...
0
votes
1answer
142 views

Camera Translation in OpenGL

I am trying to do a class to walk through the world in OpenGL, but I am having problems with the mathematics. My idea here is to use the function lookAt from glm to set the observer in the position I ...
0
votes
1answer
88 views

why does my glutWireSphere not fill in with color?

I am trying to make a basic animation that has a 'blimp' float across the window. I have tried adapting different tutorials and sources to help build my code so be easy on the critique. Im still ...
-1
votes
1answer
322 views

OpenGL+ QT 5.0.1 + VS2010: error C2371: 'GLdouble' : redefinition; different basic types

I have installed QT5.0.1 and I am trying to use GLUT. I have the following error: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\include\GL/gl.h(55): error C2371: 'GLdouble' : redefinition; ...
0
votes
1answer
219 views

how to draw 3d cylinder with flat shading

I would like to know how to draw a cylinder with flat shading. This is what I've done so far. void drawCylinder(int numMajor, int numMinor, float height, float radius) { double majorStep = height ...
0
votes
1answer
277 views

OpenGL Chess Pieces

I need to make a chess set in OpenGL and want to know if this is the right way to go. This is the code for the pawn piece: void pawn(void) { glClear (GL_COLOR_BUFFER_BIT); DrawArc(xc+6, ...
0
votes
2answers
85 views

Calling glLoadIdentity shows awkward behaviour

I have written this piece of code in c to draw a planet system with a sun and a planet glClear(GL_COLOR_BUFFER_BIT); glColor3f(0.0,0.0,0.0); glMatrixMode(GL_MODELVIEW_MATRIX); glPushMatrix(); ...
1
vote
1answer
65 views

OpenGL Translation - Coordinate

I'm attempting to make a simple game that allows you to jump around the screen and onto the platforms without leaving the screen or falling through the platforms. So far i have managed to create a ...

1 2 3 4 5 15