-1
votes
0answers
22 views

Y direction shearing matrix and its equivalence using rotation, scaling and transformation [duplicate]

1 0 0 shx 1 -shy.xref 0 0 1 Could someone please explain to me the steps for expressing the shear operation in terms of rotation, scaling and transformation?
0
votes
1answer
72 views

Skeletal animation using OpenGL [closed]

I want to do skeletal animation using OpenGL. I tried to search on net, but I couldn't find any proper tutorial or any book. I saw few sites, but they are using some other software like COLLADA or ...
1
vote
0answers
39 views

Rendering to a texture via FBO

I am trying to apply post processing effects to a small test program for OS X. I am trying to render the image into a texture and then render the texture to the screen (i haven't even gotten to ...
-2
votes
0answers
40 views

GLFW drawing's off

Whenever I draw something the x is at the far right of the screen. So everything I draw at the top left corner is at the top right corner.
0
votes
2answers
51 views

Getting the total video memory size

On the internet I have found that there are OpenGL extensions for AMD and NVIDIA to get the memory information of the graphics card. Now I'm trying to get the total video memory size but I'm always ...
1
vote
0answers
60 views

error creating shader type 35663

i want to learn OpenGl and i follow the tutorial in http://ogldev.atspace.co.uk/ nicely tutorial 1,2 have been passed. but on the tutorial 3,that is make a triangle i got error. the code is compile ...
0
votes
0answers
22 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
vote
1answer
45 views

OpenGL texture transformations

I'm a beginner to OpenGL and I'd like a simple introduction to using textures. For my application, I have no need of geometry, just some texture manipulation. I want to be able to scale, rotate, and ...
0
votes
2answers
48 views

Generating a Sphere

I'am trying to draw a icosahedron using OpenGL 3.3+ so i may subdivided later on to make it a sphere, but I keep getting this error in VS2010 Express: Stack around the variable '_vertices' was ...
2
votes
1answer
95 views

Shadow mapping with multiple shadows

I've implemented shadow mapping using ARB extensions following this tutorial http://www.paulsprojects.net/tutorials/smt/smt.html I've modified the code to add another light source. I've created and ...
0
votes
1answer
130 views

3D Maze OpenGL Implementation

I'm trying to create a simple 3D Maze in opengl. My initial idea was to have a grid of cubes with some of the faces of each cube transparent (for the corridors). However, I'm having a little trouble ...
0
votes
2answers
57 views

open gl depth buffer issue

I have a simple Opengl programm where I draw triangles by calling glVertex3f and the mode GL_LINE_LOOP here's what I get: You can see in the square that apparently some triangles that are at the ...
0
votes
1answer
33 views

OpenGL sprite mapping doesn't work

I'am working on my own graphics engine using OpenGL and GLUT (under Linux, C). The problem is with the sprite loader.Basicaly, I have a structure that holds the data for rendering just a part of the ...
0
votes
1answer
32 views

OpenGL SOIL painting the entire screen with the texture colour

I'm trying to load a PNG texture in OpenGL using the SOIL libray, and show the texture in GL QUAD, but when I call the function, the image is loaded correctly, but change the color of entire screen! ...
0
votes
1answer
45 views

Polygons are being drawn when I modify an unrelated, undrawn array

I am implementing Catmull-Clark subdivision on a mesh using OpenGL. I can draw my mesh just fine, and I do so using a vertex array. The array that I draw is called extraVert1[]. In order to ...
-1
votes
1answer
81 views

Adjusting glRotate, using dot product

Introducing: I'm developing a little Tower defense game in opengl, currently I'm just despairing of a little problem.... I want the projectiles from the tower to aim with the head facing the unit. So ...
1
vote
1answer
95 views

Not executing last line of for loop & not exiting when done - C

I am trying to write a program with OpenGL which takes in a list of heights (height map) and spits out a landscape. I am running into an issue when reading in the map. I have the code below as my ...
1
vote
2answers
65 views

Segfault with GLFW and GLEW

I have the following code, taken from part of an OpenGL application I'm working on. GDB reports that the code segfaults immediately when calling glfwInit(). The strange thing is, if I change the value ...
2
votes
2answers
84 views

Triangle Normal Surface Detection

So I currently have a triangle mesh (made with bezier curves) that can be changed dynamically. The problem I am facing is trying to figure out which triangles to actually render based on where the ...
0
votes
1answer
107 views

Cubic Bezier Curve Interaction

So I currently have a cubic bezier patch on the XZ plane (y = 0, so it is a flat patch). The patch is made up of 16 control points and 400 total grid points. What I am trying to currently implement is ...
0
votes
1answer
89 views

How can I make my camera move in the direction I'm facing

I'm trying to make a free roam camera in OpenGL. Currently the camera moves forward, backwards, left and right. My next aim is to allow it to move in the direction your looking at. Heres my code so ...
0
votes
0answers
42 views

opengl Chinese characters disappears

I am trying to paint some Chinese characters in opengl, a tutorial gave me the following code(I've modified some parts) GLvoid showText(int x, int y, const char* text) { glRasterPos2f(x, y); ...
-4
votes
1answer
140 views

Game Programming with OpenGL in C Not C++ [closed]

can anyone suggest a good book or website for learning Game Development using OpenGL with the C programming language (NOT C++)?
0
votes
0answers
70 views

Graphics Hooking libraries [closed]

I am looking for libraries which handle differences between hooking to directx / opengl as DLL's in Windows. To my big surprise I cannot find any, though there are lots of DirectX 9 hooking code ...
0
votes
0answers
134 views

OpenGL: Save framebuffer to image, file

I wrote some lines of code to draw a spinning rectangle: #include "glut.h" static GLfloat spin = 0.0; /* current angle */ void init(void) { glClearColor (0.0, 0.0, 0.0, 0.0); glShadeModel ...
-6
votes
1answer
53 views

save option for paint program in opengl [closed]

I am making a graphics editor like MS-Paint. I want to introduce save and open options in my program and I have no idea how to do that. I am using C and OpenGL. PS:I am using rubber-banding to draw ...
1
vote
1answer
44 views

Packing some of OpenGL commands in a dynamic library, got “wglMakeCurrent failed”

I am trying to put some of my OpenGL commands in an external library. To be specific, I'm currently drawing a 3d scene with Tcl language, and now I want to put some openGl functions (drawing functions ...
0
votes
1answer
86 views

Texture mapping a cone in opengl

I am trying to texture map a cone in opengl. Here's my code. glPushMatrix(); float radius=1; float r=1; float h=1; glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, texSet[2]); float t,s; float ...
1
vote
0answers
82 views

Netbeans linker problems. openGL/GLFW

I'm trying to set up openGL in netbeans using GLFW, and I just can't get the libraries to link properly. I have all the libraries where they are supposed to be, I've tried changing the order of the ...
0
votes
1answer
78 views

OpenGL Textures Causes Memory Issues

I'm having some weird memory issues in a C program I'm writing, and I think something related to my texture loading system is the cause. The problem is that, depending on how many textures I make, ...
2
votes
5answers
130 views

Simple Opengl Program doesnt work as it is supposed to [closed]

This is a simple program which is trying to implement a boundary-fill algorithm. As an example, it will try to fill a green rectangle with the color blue and leave everything else intact. What is ...
0
votes
1answer
46 views

How do I read all of the current faces being sent to OpenGL for rendering

I have an old program that I want to read the mesh data from, is there a way I can access all the faces/triangle strips that any program(not just the one doing the reading) is sending to OpenGL's ...
-1
votes
1answer
116 views

Drawing multiple objects in OpenGL using C

I have an OpenGL program to draw a circle by mouse click. The program works fine except when I try to draw multiple circles the previous circle disappears. Here is the code: #include ...
6
votes
1answer
102 views

When does OpenGL get finished with pointers in functions?

OpenGL has a number of functions that directly take pointers. Some of them read data from those pointers, others write data to those pointers. However, OpenGL functions often don't execute ...
1
vote
1answer
147 views

OPEN GL_POLYGON

I have a problem when I try to use Polygon in openGL. I don't know how to explain this but all my vertex are connected with the beginning one. The problem happens when I try to color the object. I ...
1
vote
1answer
93 views

Can a VBO be bound to multiple VAOs?

I'm trying to render a model's UV map by treating its texture coordinates as an array of vertex positions. I set up a VAO for the model which renders perfectly, then tried adding a second VAO and ...
-1
votes
2answers
138 views

C + OpenGL quaternions

A quaternion is a number of the form: a + bi + cj + dk Right? Good, but... How do I interpret this number in C language? If for example I want to rotate a cube What multiplied by the quaternion? ...
1
vote
3answers
138 views

OpenGL/OSX/GLFW: nothing except the window color

I'm doing a bit of OpenGL/C work for University (I've experience in WebGL). The code below is is mostly based on the gltut tutorials (which won't run on OSX - need OGL 3.3) and NeHe ones too. My ...
-1
votes
1answer
39 views

Simultaneous rotation in Matrix

Can anyone help me (again) please? I have a Matrix like this: 1.0 0.0 0.0 2.5 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 How can I rotate it 20° in X axis, -128° in Y axis and ...
0
votes
1answer
94 views

GL_REPEAT and GL_CLAMP giving same result

I have a problem with GL_REPEAT and GL_CLAMP when generating a texture in OpenGL. In my following code I get same result(its always repeated) with GL_REPEAT and GL_CLAMP ... I dont see any difference ...
1
vote
2answers
99 views

How can I get the angle from a matrix

I got a rotation matrix like this: 1.0 0.0 0.0 2.07814 0.0 -0.809017 0.587785 0.0 0.0 -0.587785 -0.809017 0.0 0.0 0.0 0.0 1.0 How can i get ...
0
votes
1answer
116 views

OpenGL: How to drag image and move it to the line by using the mouse

I want to drag an image to one line by using the mouse and when the image is close to the line, the image will automatically move on to the line, like some "floor planner" program ------------you ...
1
vote
1answer
136 views

How much work should be done in shaders in opengl? [closed]

Should I avoid doing excess calculations in the shaders in opengl? For example: Things that need to be calculated every frame such as lighting. Should I do the calculations then send the results to ...
-3
votes
1answer
67 views

OpenGL delete lines

I want draw lines and then I click the line and delete it. How can I find the line that I wanted by using mouse? Can an one help me?
0
votes
1answer
256 views

OpenGL How to use mouse picking square and drag it?

This is some of my code!~~ Why I changed the colour of square, but it does not work? Can any one help me? And How can I use the mouse to move these three square? #include <GL/glut.h> #include ...
2
votes
2answers
95 views

Removing strings from the stack in C

I would like to store my GLSL shaders inside of my executable file for neatness, would having the string defined inside the function that will load them into shader objects get the strings removed ...
6
votes
1answer
247 views

OpenGL extensions, how to use them correctly in C and glsl

I am working on a game engine and it has evolved greatly. Because the engine needs to work on mac also, I am still using OpenGL 3.2 and GLSL 1.2 :-(. I use GLEW which I assumed would solve extension ...
0
votes
1answer
46 views

OpenGL Pre-compiled Header Skipped

Hey guys I'm having a problem with my coding at the moment. The Problem is that my #Include <glut.h> File is being skipped when looking for Precompiled Header Use and cannot find a way to solve ...
1
vote
1answer
80 views

Enlarging a cube and putting it into a 3D space

I've created a program to display a lined cube on a white canvas but I am unsure how to multiple that cube into lets say? 10 x 10. Another question is how would I go about creating the same cube in a ...
1
vote
2answers
60 views

Lines and textures will not show up together

Here is how I draw the line and I using mouse to draw the line static struct { GLfloat p[MAX_POINTS][2]; GLuint point_cnt; } contours [ MAX_CONTOURS ] ; GLuint point_cnt_mouse; point_cnt_mouse ...

1 2 3 4 5 15