active questions tagged opengl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T00:52:13Z http://stackoverflow.com/feeds/tag/opengl http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817397/how-to-extrude-a-path-in-3d 0 how to extrude a path in 3d ? George Profenza 2009-11-30T01:03:56Z 2009-12-01T22:55:16Z <p>Hi,</p> <p>I'm trying to extrude a path in 3d. Nothing fancy yet, just following some points and using a regular polygon for 'tubing'. I'm using Processing for now to quickly prototype, but will later turn the code into OpenGL.</p> <p>My problem is rotating the 'joints' at the right angles. I think I have a rough idea how to get the angles, not sure.</p> <p>I've started from a sample by Simon Greenwold(Processing > File > Examples > 3D > Form > Vertices).Here's my attempt so far:</p> <pre><code>CShape test; void setup() { size(500, 500, P3D); Vector points = new Vector(); for(int i = 0 ; i &lt;= 10 ; i++){ float angle = TWO_PI/10 * i; points.add(new PVector(cos(angle) * 100,sin(angle) * 100,0)); } test = new CShape(10,10,points,5); } void draw() { background(0); lights(); translate(width / 2, height / 2); rotateY(map(mouseX, 0, width, 0, PI)); rotateX(map(mouseY, 0, height, 0, PI)); noStroke(); fill(255, 255, 255); translate(0, -40, 0); test.draw(); } import java.util.Vector; class CShape{ float topRadius,bottomRadius,tall,sides; int pointsNum; Vector points; CShape(){} CShape(float topRadius, float bottomRadius, Vector points, int sides) { this.topRadius = topRadius; this.bottomRadius = bottomRadius; this.points = points; this.pointsNum = points.size(); this.sides = sides; } void draw() { if(pointsNum &gt;= 2){ float angle = 0; float angleIncrement = TWO_PI / sides; //top cap if (topRadius != 0) { angle = 0; beginShape(TRIANGLE_FAN); PVector v0 = PVector.add((PVector)(points.get(0)),new PVector(0,0,0)); PVector v1 = PVector.add((PVector)(points.get(2)),new PVector(0,0,0)); //get angle float rAngle = atan2(v1.y-v0.y,v1.x-v0.x) + HALF_PI; vertex(v0.x, v0.y, v0.z); for (int i = 0; i &lt; sides + 1; i++) { vertex(v0.x + topRadius * cos(angle), v0.y, v0.z +topRadius * sin(angle)); angle += angleIncrement; } endShape(); } //side / length strips for(int p = 1; p &lt; pointsNum ; p++){ beginShape(TRIANGLE_STRIP); for (int i = 0; i &lt; sides + 1; ++i) { PVector previous = PVector.add((PVector)(points.get(p-1)),new PVector(0,0,0)); PVector current = PVector.add((PVector)(points.get(p)),new PVector(0,0,0)); float rAngle = 0; if(p &lt; pointsNum - 1) { PVector next = PVector.add((PVector)(points.get(p+1)),new PVector(0,0,0)); rAngle = atan2(next.y-previous.y,next.x-previous.x) + HALF_PI; } vertex(previous.x + topRadius*cos(angle), previous.y,previous.z + topRadius*sin(angle)); vertex(current.x + bottomRadius*cos(angle), current.y,current.z + bottomRadius*sin(angle)); angle += angleIncrement; } endShape(); } //bottom cap if (bottomRadius != 0) { angle = 0; PVector last = PVector.add((PVector)(points.get(pointsNum-1)),new PVector(0,0,0)); beginShape(TRIANGLE_FAN); // Center point vertex(last.x, last.y, last.z); for (int i = 0; i &lt; sides + 1; i++) { vertex(last.x + bottomRadius * cos(angle), last.y, last.z + bottomRadius * sin(angle)); angle += angleIncrement; } endShape(); } }else{ println("Not enough points " + points.size()); } } } </code></pre> <p>Any hints ?</p> <p><strong>UPDATE</strong></p> <p>Here is how my sketch looks like:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/extrude.gif" alt="processing extrude"></p> <p>The problem is the joints aren't at the right angle, so the extrude looks wrong. This isn't a very good example, as this could be achieved with a lathe. If I can get a lathe to work with an arbitrary set of points and an axis that will be great. I am using extrusion because I am trying to create geometric bodies based on the art of Liviu Stoicoviciu.</p> <p>Here are some samples:</p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpainting.jpg" alt="star painting"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/star%5Fpaper%5Fsculpture.jpg" alt="star paper sculpture"></p> <p><img src="http://doc.gold.ac.uk/~ma802gp/triangles%5Fpencil.jpg" alt="triangles"></p> <p>Sorry about the poor quality.</p> <p>As you can see in the triangles image, that would be achieved with extrusions.</p> http://stackoverflow.com/questions/1824606/using-blender-sketchup-models-in-opengl 1 Using Blender/SketchUp Models in OpenGL Aeolien 2009-12-01T07:44:29Z 2009-12-01T22:33:02Z <p>I'm making a renderer using OpenGL. I have textured models in Blender / Sketchup (I can exchange between the two easily), and I'd like to be able to export those files into my renderer. My initial idea was to simply export the raw faces and render those triangles, but I'd like to easily slice my texture files into texture coordinates as well.</p> <p>By that, I mean that my model faces get carved into triangles. You can see in <a href="http://imgur.com/dgzQ3.png" rel="nofollow">this image</a> (reproduced below) that my curve becomes 24 triangles. I would like to know what texture coordinates to use for each triangle.</p> <p><img src="http://i.imgur.com/dgzQ3.png" alt="Polygonized curved 3D object"></p> <p>Would a DAE file be the easiest way to do that? I've been reading the specs for the format and it looks easy enough. I think I could parse the XML and faithfully recreate the models in OpenGL. I'm wondering if there is an easier way (i.e. one that doesn't reinvent the wheel).</p> <p>Thanks in advance!</p> <p><em>I'd include the image here, but I'm too new to the site. I hope you guys understand!</em></p> http://stackoverflow.com/questions/1773575/what-data-type-should-i-use-for-my-texture-coordinates-in-opengl-es 0 What data type should I use for my texture coordinates in OpenGL ES? Matthew Chen 2009-11-20T22:12:55Z 2009-12-01T20:58:35Z <p>I notice that the default data type for texture coordinates in the OpenGL docs is GLfloat, but much of the sample code I see written by experienced iphone developers uses GLshort or GLbyte. Is this an optimization?</p> <p>GLfloat vertices[] = {<br> // Upper left x1, y2, // Lower left x1, y1, // Lower right x2, y1, // Upper right x2, y2, }; glTexCoordPointer(2, GL_FLOAT, 0, iconSTs);</p> <p>vs.</p> <p>GLbyte vertices[] = {<br> // Upper left x1, y2, // Lower left x1, y1, // Lower right x2, y1, // Upper right x2, y2, }; glTexCoordPointer(2, GL_BYTE, 0, iconSTs);</p> http://stackoverflow.com/questions/1816827/how-to-create-bitmap-from-integer-array-in-c-opengl 0 How to create bitmap from integer array in C / OpenGL EnderX 2009-11-29T21:26:24Z 2009-12-01T20:44:46Z <p>I am trying to move my code from Java to C, and I have encountered a problem while trying to find a function in C that can take an array of ints and create a bitmap from it for OpenGL. In Java, I used </p> <p><code> bitmap = Bitmap.createBitmap( {int array name} , w, h, Config.RGB_565); </code></p> <p>Is there a similar function that I can use in C, or a workaround that I could use?</p> <p>Also, if it matters, I am programming for Android.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1827693/opensource-library-to-make-opengl-es-guis-on-the-iphone 5 OpenSource library to make OpenGL ES GUIs on the iPhone? Mr.Gando 2009-12-01T17:28:57Z 2009-12-01T19:50:55Z <p>I'm looking for some kind of OpenSource library that allows me to make OpenGL GUIs on the iPhone ( for example the game menu , and some in-game pieces of interface like a player inventory ).</p> <p>Does anyone know if some sort of library/middleware exists for this ? </p> <p>A very big commercial example of this ( not for the iPhone ) would be: <a href="http://www.scaleform.com/products/gfx" rel="nofollow">Scaleform</a></p> http://stackoverflow.com/questions/1823927/simulated-time-in-a-game-loop-using-c 0 Simulated time in a game loop using c++ Tim 2009-12-01T04:02:59Z 2009-12-01T18:20:21Z <p>I am building a 3d game from scratch in C++ using OpenGL and SDL on linux as a hobby and to learn more about this area of programming.</p> <p>Wondering about the best way to simulate time while the game is running. Obviously I have a loop that looks something like:</p> <pre><code>void main_loop() { while(!quit) { handle_events(); DrawScene(); ... SDL_Delay(time_left()); } } </code></pre> <p>I am using the SDL_Delay and time_left() to maintain a framerate of about 33 fps.</p> <p>I had thought that I just need a few global variables like</p> <pre><code>int current_hour = 0; int current_min = 0; int num_days = 0; Uint32 prev_ticks = 0; </code></pre> <p>Then a function like :</p> <pre><code>void handle_time() { Uint32 current_ticks; Uint32 dticks; current_ticks = SDL_GetTicks(); dticks = current_ticks - prev_ticks; // get difference since last time // if difference is greater than 30000 (half minute) increment game mins if(dticks &gt;= 30000) { prev_ticks = current_ticks; current_mins++; if(current_mins &gt;= 60) { current_mins = 0; current_hour++; } if(current_hour &gt; 23) { current_hour = 0; num_days++; } } } </code></pre> <p>and then call the handle_time() function in the main loop.</p> <p>It compiles and runs (using printf to write the time to the console at the moment) but I am wondering if this is the best way to do it. Is there easier ways or more efficient ways?</p> http://stackoverflow.com/questions/1827514/help-debugging-glversion-error-in-a-java3d-application 0 Help debugging GL_VERSION error in a Java3d application Ian Will 2009-12-01T16:56:10Z 2009-12-01T18:10:04Z <p>I'm working on a 3d globe application written in java using java3d for the rendering. I've got a windows installer that basically copies files from a development snapshot to the program files directory. It runs fine from the devel snapshot, but when running after an install it does this:</p> <pre><code>Java 3D ERROR : OpenGL 1.2 or better is required (GL_VERSION=1.1) javax.media.j3d.IllegalRenderingStateException: GL_VERSION at javax.media.j3d.NativePipeline.createNewContext(Native Method) at javax.media.j3d.NativePipeline.createNewContext(NativePipeline.java:2736) at javax.media.j3d.Canvas3D.createNewContext(Canvas3D.java:4895) at javax.media.j3d.Canvas3D.createNewContext(Canvas3D.java:2421) at javax.media.j3d.Renderer.doWork(Renderer.java:895) at javax.media.j3d.J3dThread.run(J3dThread.java:256) </code></pre> <p>I've compared the all the libraries and jars in the development directories and the files are all exactly the same and none are missing. It's the weirdest thing. I've updated my graphics drivers (though they're clearly sufficient since things run fine from a devel snapshot). I've written a simple java3d app that is able to make a Canvas3D and add a ColorCube to it. It runs fine. P.s. our development snapshot includes all the dlls, jars, and the jre things run from. We log all the library and jvm versions and they're exactly the same in logs generated from the devel snapshot and the installed application. We run using an explicit path to java.exe (..\jre\bin\java.exe), so the PATH variable isn't in play. </p> <p>I'm looking for ideas to debug this. I'd like to write a simple java app that prints all the GL attributes, especially GL_VERSION, to try to demonstrate some quantifiable difference between the two set ups. The java3d docs don't cover that, and all internet searches for GL_VERSION problems just tell you to update your drivers.</p> <p>Oh, I've got Nvidia Quadro FX 3800 cards. Two of 'em actually. </p> <p>In summary...<br> Q1: How do you print GL_VERSION for your java3d application?<br> Q2: What the heck is going on?</p> http://stackoverflow.com/questions/1776062/how-can-i-retrieve-the-current-position-of-the-vertices-after-they-have-been-tran 1 how can I retrieve the current position of the vertices after they have been transformed? Jamey McElveen 2009-11-21T17:10:42Z 2009-12-01T15:32:22Z <p>How can I retrieve the current position of the vertices after they have been transformed? I have the following code....</p> <p>How can I get the position of the "modelVertices" after the transform has been applied?</p> <p>I am really after the screen coordinates so I can tell if a vert has been clicked by the mouse.</p> <p><hr></p> <pre><code>glMatrixMode(GL_MODELVIEW); // save model transform matrix GLfloat currentModelMatrix[16]; glGetFloatv(GL_MODELVIEW_MATRIX, currentModelMatrix); // clear the model transform matrix glLoadIdentity(); // rotate the x and y axis of the model transform matrix glRotatef(rotateX, 1.0f, 0.0f, 0.0f); glRotatef(rotateY, 0.0f, 1.0f, 0.0f); // reapply the previous transforms glMultMatrixf(currentModelMatrix); glClearColor(0.1f, 0.1f, 0.1f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); // since each vertes is defined in 3D instead of 2D parameter one has been // upped from 2 to 3 to respect this change. glVertexPointer(3, GL_FLOAT, 0, modelVertices); glEnableClientState(GL_VERTEX_ARRAY); </code></pre> http://stackoverflow.com/questions/1738315/calculate-fps-frames-per-second-for-iphone-app 0 Calculate fps (frames per second) for iphone app Mel 2009-11-15T18:14:22Z 2009-12-01T14:39:56Z <p>I am using an opengl es iphone application. What is the most accurate way to calculate the frames per second of my application for performance tuning?</p> http://stackoverflow.com/questions/1739640/can-the-iphone-simulator-handle-pvr-textures 0 Can the iPhone simulator handle PVR textures? Alex Lowe 2009-11-16T01:45:51Z 2009-12-01T14:35:23Z <p>I have a really weird problem with PVR textures on the iPhone simulator- the framerate falls through the floor on the iPhone simulator, but on the iPhone itself it works just fine. Has anyone had any experiences similar to this? I'm using SDK 3.1.2</p> http://stackoverflow.com/questions/1823081/matrix-classes-directx-opengl 1 Matrix classes Directx & OpenGL Tom J Nowell 2009-11-30T23:18:01Z 2009-12-01T08:44:20Z <p>I have the following C++ matrix class:</p> <p><a href="http://pastebin.com/f3fe5870f" rel="nofollow">transform.h</a> <a href="http://pastebin.com/f2576d468" rel="nofollow">transform.cpp</a></p> <p>I am using this coupled with a renderer, for which there is an opengl and a directx implementation.</p> <p>I have a test example where the coordinates of the mouse within the window are used to position a graphic under the cursor. This works as expected under OpenGL.</p> <p>Because directx is row major and opengl is column major, I reverse the matrix as follows and pass it to directx before rendering:</p> <pre><code> if(o-&gt;tree){ CObjectTransform* t = o-&gt;tree-&gt;GetTransform(o-&gt;transformID); D3DMATRIX d; float* m = (float*)&amp;d; for (int u=0; u&lt;4; u++){ for (int v=0; v&lt;4; v++){ m[u +v*4] = t-&gt;worldtransform.matrix[v+u*4]; } } pd3dDevice-&gt;SetTransform(D3DTS_WORLD, &amp;d); } </code></pre> <p>The result of this is nothing is shown in the visible area from the graphics, regardless of here I put my cursor.</p> <p>So:</p> <ol> <li>Is my transform class correctly implemented?</li> <li>How do I get it working with directx?</li> </ol> <p>edit:</p> <p>the following code was setup:</p> <pre><code> float* m = (float*)&amp;d; for (int u=0; u&lt;4; u++){ for (int v=0; v&lt;4; v++){ m[u +v*4] = t-&gt;worldtransform.matrix[v+u*4]; } } float test[16] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 }; memcpy(test,&amp;d,sizeof(d)); </code></pre> <p>The values of the matrix class:</p> <p>1,0,0,0<br> 0,1,0,0<br> 0,0,1,0<br> 47,-30,0,1</p> <p>The values of the swapped matrix:</p> <p>1,0,0,47<br> 0,1,0,-30<br> 0,0,1,0<br> 0,0,0,1</p> <p>So the matrix is being swapped around. This rules out the swapping round code as the cause of the problem.</p> http://stackoverflow.com/questions/1816431/qt-webkit-opengl-rendering-context 0 QT Webkit & OpenGL Rendering Context Tom J Nowell 2009-11-29T19:04:31Z 2009-12-01T08:20:05Z <p>Would it be possible to create a window with a webpage using a webkit component using QT4, then embed an OpenGL context into the middle in the same way a java applet or a flash applet may appear normally?</p> http://stackoverflow.com/questions/1824656/hiding-the-cursor 0 Hiding the Cursor Tom J Nowell 2009-12-01T08:01:18Z 2009-12-01T08:04:49Z <p>I have a windows program with directx/opengl renderers, and a custom mouse rendered as a quad. The program currently runs windowed.</p> <p>The problem is the standard windows mouse is overlaid ontop of my custom cursor. How do I hide it when its inside my window?</p> http://stackoverflow.com/questions/1820067/connecting-points-to-make-a-triangle 1 Connecting points to make a triangle srand 2009-11-30T14:11:18Z 2009-11-30T14:13:47Z <p>If I have a set of 3d points what is the best way to determine the groups of 3 points (triangles) I should make, to create a surface?</p> http://stackoverflow.com/questions/275005/finding-rotation-angles-between-3d-points 4 Finding Rotation Angles between 3d points Avatar_Squadron 2008-11-08T18:12:04Z 2009-11-30T07:35:14Z <p>I am writing a program that will draw a solid along the curve of a spline. I am using visual studio 2005, and writing in C++ for OpenGL. I'm using FLTK to open my windows (fast and light toolkit).</p> <p>I currently have an algorithm that will draw a Cardinal Cubic Spline, given a set of control points, by breaking the intervals between the points up into subintervals and drawing linesegments between these sub points. The number of subintervals is variable.</p> <p>The line drawing code works wonderfully, and basically works as follows: I generate a set of points along the spline curve using the spline equation and store them in an array (as a special datastructure called Pnt3f, where the coordinates are 3 floats and there are some handy functions such as distance, length, dot and crossproduct). Then i have a single loop that iterates through the array of points and draws them as so:</p> <pre><code>glBegin(GL_LINE_STRIP); for(pt = 0; pt&lt;=numsubsegements ; ++pt) { glVertex3fv(pt.v()); } glEnd(); </code></pre> <p>As stated, this code works great. Now what i want to do is, instead of drawing a line, I want to extrude a solid. My current exploration is using a 'cylinder' quadric to create a tube along the line. This is a bit trickier, as I have to orient openGL in the direction i want to draw the cylinder. My idea is to do this:</p> <p>Psuedocode:</p> <pre><code>Push the current matrix, translate to the first control point rotate to face the next point draw a cylinder (length = distance between the points) Pop the matrix repeat </code></pre> <p>My problem is getting the angles between the points. I only need yaw and pitch, roll isnt important. I know take the arc-cosine of the dot product of the two points divided by the magnitude of both points, will return the angle between them, but this is not something i can feed to OpenGL to rotate with. I've tried doing this in 2d, using the XZ plane to get x rotation, and making the points vectors from the origin, but it does not return the correct angle.</p> <p>My current approach is much simpler. For each plane of rotation (X and Y), find the angle by:</p> <p>arc-cosine( (difference in 'x' values)/distance between the points)</p> <p>the 'x' value depends on how your set your plane up, though for my calculations I always use world x.</p> <p>Barring a few issues of it making it draw in the correct quadrant that I havent worked out yet, I want to get advice to see if this was a good implementation, or to see if someone knew a better way.</p> http://stackoverflow.com/questions/1816652/opengl-3-2-c-bindings 0 OpenGL 3.2 C# bindings Luca 2009-11-29T20:22:02Z 2009-11-29T20:22:02Z <p>Hi all.</p> <p>I was developing a my idea on sourceforge. The project links the Tao Framework, but after having read the source code, I tried to generate my OpenGL bindings, with deprecate functions removed.</p> <p>In only two weeks, I've got an initial result (missing some compilable code, again). What I want to ask, is you opinion about:</p> <ul> <li>Name suffixes reduction: which functions and enumeration shall be reduced? ("gl" prefix, "fv suffixes)"</li> <li>Function overloading: how (and which) function should be overloaded?</li> <li>Enumerations and function shall be grouped by some criterion?</li> </ul> <p>I would also ask to you about my generated code: what do you think about it?</p> <p>Thank you to everyone for every constructive comment.</p> http://stackoverflow.com/questions/1815513/problem-with-a-volumetric-fog-in-opengl 1 Problem with a volumetric fog in OpenGL Irene 2009-11-29T13:13:22Z 2009-11-29T16:12:08Z <p>Good day. I am trying to make a volumetric fog in OpenGL using glFogCoordfEXT. Why does a fog affect to all object of my scene, even if they're not in fog's volume? And these objects become evenly gray as a fog itself. Here is a pic <img src="http://img248.imageshack.us/img248/9281/fogp.jpg" alt="alt text"></p> <p>Code:</p> <pre><code>void CFog::init() { glEnable(GL_FOG); glFogi(GL_FOG_MODE, GL_LINEAR); glFogfv(GL_FOG_COLOR, this-&gt;color); glFogf(GL_FOG_START, 0.0f); glFogf(GL_FOG_END, 1.0f); glHint(GL_FOG_HINT, GL_NICEST); glFogi(GL_FOG_COORDINATE_SOURCE_EXT, GL_FOG_COORDINATE_EXT); } void CFog::draw() { glBlendFunc(GL_SRC_ALPHA, GL_SRC_ALPHA); glEnable(GL_BLEND); glPushMatrix(); glTranslatef(this-&gt;coords[0], this-&gt;coords[1], this-&gt;coords[2]); if(this-&gt;angle[0] != 0.0f) glRotatef(this-&gt;angle[0], 1.0f, 0.0f, 0.0f); if(this-&gt;angle[1] != 0.0f) glRotatef(this-&gt;angle[1], 0.0f, 1.0f, 0.0f); if(this-&gt;angle[2] != 0.0f) glRotatef(this-&gt;angle[2], 0.0f, 0.0f, 1.0f); glScalef(this-&gt;size, this-&gt;size, this-&gt;size); GLfloat one = 1.0f; GLfloat zero = 0.0f; glColor4f(0.0, 0.0, 0.0, 0.5); glBegin(GL_QUADS); // Back Wall glFogCoordfEXT( one); glVertex3f(-2.5f,-2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f,-2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f, 2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f(-2.5f, 2.5f,-15.0f); glEnd(); GLenum err; if((err = glGetError()) != GL_NO_ERROR) { char * str = (char *)glGetString(err); } glBegin(GL_QUADS); // Floor glFogCoordfEXT( one); glVertex3f(-2.5f,-2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f,-2.5f,-15.0f); glFogCoordfEXT( zero); glVertex3f( 2.5f,-2.5f, 15.0f); glFogCoordfEXT( zero); glVertex3f(-2.5f,-2.5f, 15.0f); glEnd(); glBegin(GL_QUADS); // Roof glFogCoordfEXT( one); glVertex3f(-2.5f, 2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f, 2.5f,-15.0f); glFogCoordfEXT( zero); glVertex3f( 2.5f, 2.5f, 15.0f); glFogCoordfEXT( zero); glVertex3f(-2.5f, 2.5f, 15.0f); glEnd(); glBegin(GL_QUADS); // Right Wall glFogCoordfEXT( zero); glVertex3f( 2.5f,-2.5f, 15.0f); glFogCoordfEXT( zero); glVertex3f( 2.5f, 2.5f, 15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f, 2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f( 2.5f,-2.5f,-15.0f); glEnd(); glBegin(GL_QUADS); // Left Wall glFogCoordfEXT( zero); glVertex3f(-2.5f,-2.5f, 15.0f); glFogCoordfEXT( zero); glVertex3f(-2.5f, 2.5f, 15.0f); glFogCoordfEXT( one); glVertex3f(-2.5f, 2.5f,-15.0f); glFogCoordfEXT( one); glVertex3f(-2.5f,-2.5f,-15.0f); glEnd(); glPopMatrix(); glDisable(GL_BLEND); //glDisable(GL_FOG); } </code></pre> http://stackoverflow.com/questions/1810043/shadows-via-shadowmaps-and-other-textures-how-to-combine-opengl 0 Shadows via shadowmaps and other textures - how to combine? OpenGL Irene 2009-11-27T18:11:10Z 2009-11-29T14:25:06Z <p>Good day. I draw a scene with shadows using shadow maps method (when we're rendering scene from light point of view to retrieve depth buffer, making shadow texture and projecting it on the scene, rendered from a camera point of view) As I use shadowmap texture, all other textured objects, of course, lose their texturing. But I really DO want textured scene with shadows:) I read about multitexturing, I actually tried to apply it, but failed. What exactly should I do? (I took code from OpenGl superbible) Here is the main setup procedure's code. I marked new strings (those for multitexturing) with //&lt;====</p> <pre><code> void SetupRC() { ambientShadowAvailable = GL_TRUE; npotTexturesAvailable = GL_TRUE; glGetIntegerv(GL_MAX_TEXTURE_SIZE, &amp;maxTexSize); fprintf(stdout, "Controls:\n"); fprintf(stdout, "\tRight-click for menu\n\n"); fprintf(stdout, "\tx/X\t\tMove +/- in x direction\n"); fprintf(stdout, "\ty/Y\t\tMove +/- in y direction\n"); fprintf(stdout, "\tz/Z\t\tMove +/- in z direction\n\n"); fprintf(stdout, "\tf/F\t\tChange polygon offset factor +/-\n\n"); fprintf(stdout, "\tq\t\tExit demo\n\n"); // Black background glClearColor(0.32f, 0.44f, 0.85f, 0.5f ); // Hidden surface removal glEnable(GL_DEPTH_TEST); glDepthFunc(GL_LEQUAL); glPolygonOffset(factor, 0.0f); // Set up some lighting state that never changes glShadeModel(GL_SMOOTH); glEnable(GL_LIGHTING); glEnable(GL_COLOR_MATERIAL); glEnable(GL_NORMALIZE); glEnable(GL_LIGHT0); // Set up some texture state that never changes glActiveTexture(GL_TEXTURE1); //&lt;===== glGenTextures(1, &amp;shadowTextureID); glBindTexture(GL_TEXTURE_2D, shadowTextureID); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_DEPTH_TEXTURE_MODE, GL_INTENSITY); // if (ambientShadowAvailable) glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_FAIL_VALUE_ARB, 0.5f); glTexGeni(GL_S, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); glTexGeni(GL_T, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); glTexGeni(GL_R, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); glTexGeni(GL_Q, GL_TEXTURE_GEN_MODE, GL_EYE_LINEAR); ::scene-&gt;fog-&gt;init(); RegenerateShadowMap(); } </code></pre> <p>Here is shadowmap generation procedure:</p> <pre><code> void RegenerateShadowMap(void) { GLfloat lightToSceneDistance, nearPlane, fieldOfView; GLfloat lightModelview[16], lightProjection[16]; GLfloat sceneBoundingRadius = 200.0f; // based on objects in scene // Save the depth precision for where it's useful lightToSceneDistance = sqrt(lightPos[0] * lightPos[0] + lightPos[1] * lightPos[1] + lightPos[2] * lightPos[2]); nearPlane = lightToSceneDistance - sceneBoundingRadius; // Keep the scene filling the depth texture fieldOfView = (GLfloat)m3dRadToDeg(2.0f * atan(sceneBoundingRadius / lightToSceneDistance)); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(fieldOfView, 1.0f, nearPlane, nearPlane + (2.0f * sceneBoundingRadius)); glGetFloatv(GL_PROJECTION_MATRIX, lightProjection); // Switch to light's point of view glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(lightPos[0], lightPos[1], lightPos[2], 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f); glGetFloatv(GL_MODELVIEW_MATRIX, lightModelview); glViewport(0, 0, shadowWidth, shadowHeight); // Clear the depth buffer only glClear(GL_DEPTH_BUFFER_BIT); // All we care about here is resulting depth values glShadeModel(GL_FLAT); glDisable(GL_LIGHTING); glDisable(GL_COLOR_MATERIAL); glDisable(GL_NORMALIZE); glActiveTexture(GL_TEXTURE0); //&lt;===== glDisable(GL_TEXTURE_2D); glActiveTexture(GL_TEXTURE1); //&lt;===== glColorMask(0, 0, 0, 0); // Overcome imprecision glEnable(GL_POLYGON_OFFSET_FILL); // Draw objects in the scene except base plane // which never shadows anything DrawModels(GL_FALSE); // Copy depth values into depth texture glCopyTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT, 0, 0, shadowWidth, shadowHeight, 0); // Restore normal drawing state glShadeModel(GL_SMOOTH); glEnable(GL_LIGHTING); glEnable(GL_COLOR_MATERIAL); glEnable(GL_NORMALIZE); glActiveTexture(GL_TEXTURE0); //&lt;===== glEnable(GL_TEXTURE_2D); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glColorMask(1, 1, 1, 1); glDisable(GL_POLYGON_OFFSET_FILL); // Set up texture matrix for shadow map projection, // which will be rolled into the eye linear // texture coordinate generation plane equations M3DMatrix44f tempMatrix; m3dLoadIdentity44(tempMatrix); m3dTranslateMatrix44(tempMatrix, 0.5f, 0.5f, 0.5f); m3dScaleMatrix44(tempMatrix, 0.5f, 0.5f, 0.5f); m3dMatrixMultiply44(textureMatrix, tempMatrix, lightProjection); m3dMatrixMultiply44(tempMatrix, textureMatrix, lightModelview); // transpose to get the s, t, r, and q rows for plane equations m3dTransposeMatrix44(textureMatrix, tempMatrix); } </code></pre> <p>Scene render proc:</p> <pre><code> void RenderScene(void) { // Track camera angle glMatrixMode(GL_PROJECTION); glLoadIdentity(); if (windowWidth &gt; windowHeight) { GLdouble ar = (GLdouble)windowWidth / (GLdouble)windowHeight; glFrustum(-ar * cameraZoom, ar * cameraZoom, -cameraZoom, cameraZoom, 1.0, 1000.0); } else { GLdouble ar = (GLdouble)windowHeight / (GLdouble)windowWidth; glFrustum(-cameraZoom, cameraZoom, -ar * cameraZoom, ar * cameraZoom, 1.0, 1000.0); } glMatrixMode(GL_MODELVIEW); glLoadIdentity(); gluLookAt(cameraPos[0], cameraPos[1], cameraPos[2], 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f); glViewport(0, 0, windowWidth, windowHeight); // Track light position glLightfv(GL_LIGHT0, GL_POSITION, lightPos); // Clear the window with current clearing color glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); if (showShadowMap) { // Display shadow map for educational purposes glActiveTexture(GL_TEXTURE1); //&lt;===== glMatrixMode(GL_PROJECTION); glLoadIdentity(); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glMatrixMode(GL_TEXTURE); glPushMatrix(); glLoadIdentity(); glEnable(GL_TEXTURE_2D); glDisable(GL_LIGHTING); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_MODE, GL_NONE); // Show the shadowMap at its actual size relative to window glBegin(GL_QUADS); glTexCoord2f(0.0f, 0.0f); glVertex2f(-1.0f, -1.0f); glTexCoord2f(1.0f, 0.0f); glVertex2f(((GLfloat)shadowWidth/(GLfloat)windowWidth)*2.0f-1.0f, -1.0f); glTexCoord2f(1.0f, 1.0f); glVertex2f(((GLfloat)shadowWidth/(GLfloat)windowWidth)*2.0f-1.0f, ((GLfloat)shadowHeight/(GLfloat)windowHeight)*2.0f-1.0f); glTexCoord2f(0.0f, 1.0f); glVertex2f(-1.0f, ((GLfloat)shadowHeight/(GLfloat)windowHeight)*2.0f-1.0f); glEnd(); glDisable(GL_TEXTURE_2D); glEnable(GL_LIGHTING); glPopMatrix(); glMatrixMode(GL_PROJECTION); gluPerspective(45.0f, 1.0f, 1.0f, 1000.0f); glMatrixMode(GL_MODELVIEW); } else if (noShadows) { // Set up some simple lighting glLightfv(GL_LIGHT0, GL_AMBIENT, ambientLight); glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuseLight); // Draw objects in the scene including base plane DrawModels(GL_TRUE); } else { if (!ambientShadowAvailable) { GLfloat lowAmbient[4] = {0.1f, 0.1f, 0.1f, 1.0f}; GLfloat lowDiffuse[4] = {0.35f, 0.35f, 0.35f, 1.0f}; // Because there is no support for an "ambient" // shadow compare fail value, we'll have to // draw an ambient pass first... glLightfv(GL_LIGHT0, GL_AMBIENT, lowAmbient); glLightfv(GL_LIGHT0, GL_DIFFUSE, lowDiffuse); // Draw objects in the scene, including base plane DrawModels(GL_TRUE); // Enable alpha test so that shadowed fragments are discarded glAlphaFunc(GL_GREATER, 0.9f); glEnable(GL_ALPHA_TEST); } glLightfv(GL_LIGHT0, GL_AMBIENT, ambientLight); glLightfv(GL_LIGHT0, GL_DIFFUSE, diffuseLight); // Set up shadow comparison glActiveTexture(GL_TEXTURE1); //&lt;===== glEnable(GL_TEXTURE_2D); glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_COMPARE_MODE, GL_COMPARE_R_TO_TEXTURE); // Set up the eye plane for projecting the shadow map on the scene glEnable(GL_TEXTURE_GEN_S); glEnable(GL_TEXTURE_GEN_T); glEnable(GL_TEXTURE_GEN_R); glEnable(GL_TEXTURE_GEN_Q); glTexGenfv(GL_S, GL_EYE_PLANE, &amp;textureMatrix[0]); glTexGenfv(GL_T, GL_EYE_PLANE, &amp;textureMatrix[4]); glTexGenfv(GL_R, GL_EYE_PLANE, &amp;textureMatrix[8]); glTexGenfv(GL_Q, GL_EYE_PLANE, &amp;textureMatrix[12]); // Draw objects in the scene, including base plane DrawModels(GL_TRUE); //glPushMatrix(); //glScalef(1, -1, 1); //DrawModels(GL_TRUE); //glPopMatrix(); glDisable(GL_ALPHA_TEST); glDisable(GL_TEXTURE_2D); glDisable(GL_TEXTURE_GEN_S); glDisable(GL_TEXTURE_GEN_T); glDisable(GL_TEXTURE_GEN_R); glDisable(GL_TEXTURE_GEN_Q); } if (glGetError() != GL_NO_ERROR) fprintf(stderr, "GL Error!\n"); //glBindTexture // Flush drawing commands glutSwapBuffers(); //RegenerateShadowMap(); } </code></pre> <p>And an example of textured object draw:</p> <pre><code> CTeapot::CTeapot(std::string fn, float s, float iX, float iY, float iZ) { this-&gt;setCoords(iX, iY, iZ); this-&gt;size = s; glActiveTexture(GL_TEXTURE0); //&lt;===== try { this-&gt;texture = new C2DTexture(fn); } catch(ERR::CError err) { throw err; } glActiveTexture(GL_TEXTURE1); //&lt;===== } void CTeapot::draw() { glPushMatrix(); glTranslatef(this-&gt;coords[0], this-&gt;coords[1], this-&gt;coords[2]); if(this-&gt;angle[0] != 0.0f) glRotatef(this-&gt;angle[0], 1.0f, 0.0f, 0.0f); if(this-&gt;angle[1] != 0.0f) glRotatef(this-&gt;angle[1], 0.0f, 1.0f, 0.0f); if(this-&gt;angle[2] != 0.0f) glRotatef(this-&gt;angle[2], 0.0f, 0.0f, 1.0f); glScalef(this-&gt;size, this-&gt;size, this-&gt;size); glActiveTexture(GL_TEXTURE0); //&lt;===== //glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, this-&gt;texture-&gt;getGLTexture()); glutSolidTeapot(this-&gt;size); glPopMatrix(); glActiveTexture(GL_TEXTURE1); //&lt;===== //glEnable(GL_TEXTURE_2D); } </code></pre> <p>C2DTexture texture generaton proc:</p> <pre><code>C2DTexture::C2DTexture(std::string fn) { this-&gt;filename = fn; this-&gt;imgTexture = auxDIBImageLoad(this-&gt;filename.c_str()); if(this-&gt;imgTexture == NULL) throw ERR::CError(ERR::ERR_NOSUCHFILE, ERR::ERR_NOSUCHFILETEXT + this-&gt;filename); // Creating a texture glGenTextures(1, &amp;this-&gt;glTexture); glBindTexture(GL_TEXTURE_2D, this-&gt;glTexture); // Setting filters glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_NEAREST); glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR); glTexImage2D(GL_TEXTURE_2D, 0, 3, this-&gt;imgTexture-&gt;sizeX, this-&gt;imgTexture-&gt;sizeY, 0, GL_RGB, GL_UNSIGNED_BYTE, this-&gt;imgTexture-&gt;data); } </code></pre> http://stackoverflow.com/questions/1795819/opengl-es-2-0-multithreading 0 OpenGL ES 2.0 multithreading unknown (google) 2009-11-25T09:51:48Z 2009-11-29T07:54:46Z <p>I have been trying to use OpenGL ES 2.0 to make a photo viewing application. To optimize the code I'm changing the textures loaded with the objects as the user scrolls down. But image loading into the texture takes some time and thus the effect is not good. To solve the above problem I tried using multithreading with the following ways:</p> <ol> <li>Create a separate context for the new thread and then share the resources (texture object) with the other context</li> <li>Use multiple threads and a single context. Make the context current while executing gl commands in the threads.</li> </ol> <p>But wasn't successful in either of them. So if anyone has tried similar things with opengl earlier, could you please tell which of the above ones would work and the things I need to pay attention to while doing the same? Also would FBO's and pbuffers be of any use in this case?</p> <p>Thanks for any help.</p> <p>Himanshu</p> http://stackoverflow.com/questions/1810275/gluunproject-function-in-opengl 0 gluUnProject function in openGL rantravee 2009-11-27T19:09:00Z 2009-11-27T19:17:07Z <p>Hi,</p> <p>The following piece of code gives me an error and I'm not able nor to round it ,neither to understand it .</p> <p><code>enter code here</code></p> <pre><code>GLdouble objX,objY,objZ; GLdouble modelview1[4][4], projection1[4][4]; GLint viewport1[4]; glGetDoublev( GL_MODELVIEW_MATRIX, *modelview1 ); glGetDoublev( GL_PROJECTION_MATRIX, *projection1 ); glGetIntegerv( GL_VIEWPORT, viewport1 ); gluUnProject(x, y, z, modelview1, projection1, viewport1, objX , objY , objZ);` </code></pre> <p>the error :</p> <p>`Error 1 error C2664: 'gluUnProject' : cannot convert parameter 4 from 'GLdouble [4][4]' to 'const GLdouble []' </p> http://stackoverflow.com/questions/1807857/quick-question-on-qt-and-opengl 0 Quick Question on QT and OpenGl NeverAgain 2009-11-27T10:11:44Z 2009-11-27T10:28:55Z <p>I've made a project with QT and OpenGl.</p> <p>In QT paintGl() was repeatedly call I beleive, so I was able to change values outside of that function and call update() so that it would paint a new image. I also believe that it called initializeGl() as soon as you start up the program.</p> <p>Now my question is:</p> <p>I want that same functionality in a different program. I do not need to draw any images, etc. I just was wondering if there was a way to make a function like paintGL() that keeps being called so the application never closes. I tried just using a while(true) loop that kept my program running, but the GUI was inactive because of the while loop.</p> <p>Any tips, other than threading preferably.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1805991/blending-problems-opengl 0 Blending problems (OpenGL) Irene 2009-11-26T22:42:04Z 2009-11-27T08:19:11Z <p>Hi! A have a question, maybe someone can help me. I am trying to make a mirror effect using OpenGL. I draw a transparent plane, a "reflected" scene cut by stencil, and an original one. But I have a completely non-transparent "wall" instead of the mirror. I know it happens because of the first mirror plane rendering (to get a stencil buffer). But I don't know what to do with this:( Here is the code:</p> <pre><code> void CMirror::draw(CSceneObject * curscene) { glPushMatrix(); glClearStencil(0.0f); glClear(GL_STENCIL_BUFFER_BIT); //Draw into the stencil buffer glDisable(GL_LIGHTING); glDisable(GL_TEXTURE_2D); glStencilFunc(GL_ALWAYS, 1, 0); glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE); glEnable(GL_STENCIL_TEST); glPushMatrix(); glTranslatef(this-&gt;coords[0], this-&gt;coords[1], this-&gt;coords[2]); glScalef(this-&gt;size, this-&gt;size, this-&gt;size); glColor4f(1, 0, 1, 0); glBegin(GL_QUADS); glVertex3f(0.0f, this-&gt;height / 2.0f, this-&gt;width / 2.0f); glVertex3f(0.0f, this-&gt;height / -2.0f, this-&gt;width / 2.0f); glVertex3f(0.0f, this-&gt;height / -2.0f, this-&gt;width / -2.0f); glVertex3f(0.0f, this-&gt;height / 2.0f, this-&gt;width / -2.0f); glEnd(); glPopMatrix(); glDisable(GL_STENCIL_TEST); glEnable(GL_LIGHTING); glEnable(GL_TEXTURE_2D); //glClear(GL_COLOR_BUFFER_BIT); //Draw the scene glEnable(GL_STENCIL_TEST); glStencilFunc(GL_EQUAL, 1, 255); glPushMatrix(); glTranslatef( 2*this-&gt;coords[0], 2*this-&gt;coords[1], 2*this-&gt;coords[2]); glScalef(-1.0f, 1.0f, 1.0f); ((CScene*)curscene)-&gt;draw(); glColor4f(0.0f, 0.30f, 0, 0.9); ((CScene*)curscene)-&gt;spline-&gt;draw(); ((CScene*)curscene)-&gt;morph-&gt;draw(); glPopMatrix(); glDisable(GL_STENCIL_TEST); //the mirror itself: glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glPushMatrix(); glTranslatef(this-&gt;coords[0], this-&gt;coords[1], this-&gt;coords[2]); glScalef(this-&gt;size, this-&gt;size, this-&gt;size); glColor4f(0, 0, 0, 0.9); glBegin(GL_QUADS); glVertex3f(0.0f, this-&gt;height / 2.0f, this-&gt;width / 2.0f); glVertex3f(0.0f, this-&gt;height / -2.0f, this-&gt;width / 2.0f); glVertex3f(0.0f, this-&gt;height / -2.0f, this-&gt;width / -2.0f); glVertex3f(0.0f, this-&gt;height / 2.0f, this-&gt;width / -2.0f); glEnd(); glPopMatrix(); glDisable(GL_BLEND); glPopMatrix(); } </code></pre> http://stackoverflow.com/questions/1805766/finding-an-install-of-opengl-for-64-bit-windows 0 Finding an Install of OpenGL for 64 Bit Windows bobber205 2009-11-26T21:36:20Z 2009-11-26T21:52:04Z <p>I am trying to get started on opengl programming from the videotutorialsrock.com site. It wants me to install GLUT and the OpenGL SDK. I was able to download GLUT successfully but the link he has on this page <a href="http://www.videotutorialsrock.com/opengl%5Ftutorial/get%5Fopengl%5Fsetup%5Fwindows/text.php" rel="nofollow">http://www.videotutorialsrock.com/opengl%5Ftutorial/get%5Fopengl%5Fsetup%5Fwindows/text.php</a> does not work on my 64 bit Windows 7 install. </p> <p>I tried going to the OpenGL page and did not find a download. I am not very familiar with OpenGL just yet so I am hesitant to just download some OpenGL library and go from there.</p> <p>What should I download?</p> http://stackoverflow.com/questions/1799162/read-file-and-display-vertex-values-in-opengl 0 Read file and display vertex values in openGL Val 2009-11-25T18:51:52Z 2009-11-26T09:30:23Z <p>Hi,</p> <p>I have searched everywhere on the web and found many similar things but never quite like this and I am not sure what I am doing wrong.</p> <p>I am trying to read the following file:</p> <p><hr></p> <p>4 4 // tot number of vertexes &amp; tot number of triangles</p> <p>0.693361 0.693361 0.693361 // vertex coordinates</p> <p>0.693361 -0.693361 -0.693361</p> <p>-0.693361 -0.693361 0.693361</p> <p>-0.693361 0.693361 -0.693361</p> <p>3 1 2 3 // triangles to display (the 3 in front specifies that is a triangle)</p> <p>3 0 3 2</p> <p>3 0 1 3</p> <p>3 0 2 1</p> <p><hr></p> <p>I am trying to do this by using dynamic arrays, because I will need to open other files.</p> <p>so what I have so far is:</p> <pre><code> struct Vertex // Vertex Structure { float x,y,z; }; struct Triangle // Triangle Structure { int vert1, vert2, vert3; }; int vertcount; //total number of vertices int tricount; int v; //var to store index value of each vertex int t; //var to store index value of each triangle struct Vertex InstVertex; // Instantiation of Vertex defined as struct with 3 floats to store coordinates struct Triangle InstTriangle; // Instantiation of the Triangle STRUCT FILE * pmesh; // pointer to the mesh file to be opened pmesh = fopen ("/home/.../tetra.tri","r"); // Tries to access the file specified. TO BE CHANGED ----&gt; Dialaog window with browse for file function long filesize; char *buffer; fseek (pmesh , 0 , SEEK_END); filesize = ftell (pmesh); // stores the size value of the mesh in bytes in filesize rewind (pmesh); buffer = (char*) malloc (sizeof filesize); if (buffer == NULL) { fputs ("Error loading file in buffer",stderr); exit (1); } else { buffer = (char*) pmesh; // copy mesh in buffer fclose(pmesh); // free memory } /* Now read file and store values */ fscanf(buffer, " %i %i ", &amp;vertcount, &amp;tricount); //read from file and assign the first two values: tot number of Vertices and Triangles int *vertArray[v]; int *triArray[t]; vertArray[v] = malloc ((sizeof(vertcount)) * (sizeof(struct Vertex))); // Array of vertexes - space allocated = total number of vertices * the size of each Vertex triArray[t] = malloc ((sizeof(tricount)) * (sizeof(struct Triangle))); // Array of triangles int t1, t2, t3, t4; // Temp variables where to store the vales of the line read for (v=0; v&lt;=vertcount; v++){ (fscanf(buffer, "%i %i %i %i ", t1, t2, t3, t4)); if (t4==NULL){ fscanf(buffer, "%d %d %d", InstVertex.x, InstVertex.y, InstVertex.z); //read file and store coordinates in } else if (t1==3 &amp;&amp; t4!=NULL){ InstTriangle.vert1=t2; InstTriangle.vert2=t3; InstTriangle.vert3=t4; } } fclose(buffer); </code></pre> <p><hr></p> <p>When I get to reading the file, the right values are never stored into vertcount and tricount however, so the code from there on is still at its first stage.</p> <p>The reason for this is to read the coordinates and display a mesh using vertex arrays in openGL.</p> <p>Thank you in advance</p> <p>Valerio</p> http://stackoverflow.com/questions/1802173/what-type-of-pixel-interpolation-is-used-by-opengl 0 What type of Pixel Interpolation is used by OpenGL? mhaseeb 2009-11-26T07:55:43Z 2009-11-26T08:02:29Z <p>Hello,</p> <p>I would like to know what type of Pixel Interpolation is used by OpenGL. Does it use one of the Standard Pixel Interpolation techniques like Nearest Neighbor, Bilinear or Bicubic?</p> http://stackoverflow.com/questions/1773672/cocoa-application-crashing-on-opengl-call 0 Cocoa application crashing on OpenGL call Mk12 2009-11-20T22:39:14Z 2009-11-25T22:14:02Z <p>I made a new project and pretty much copied <a href="http://developer.apple.com/mac/library/qa/qa2004/qa1385.html" rel="nofollow">this guide</a>, but whenever I call any OpenGL function it the spot marked <code>// Drawing code here</code> it crashes. I have this there :</p> <pre><code>glViewport(0, 0, [self bounds].size.width, [self bounds].size.height); glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluOrtho2D(0, [self bounds].size.width, [self bounds].size.height, 0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); glTranslatef(0.375, 0.375, 0.0); glClearColor(1, 1, 1, 1); glClear(GL_COLOR_BUFFER_BIT); glColor3f(0, 0, 0); glBegin(GL_LINES); glVertex2f(10, 10); glVertex2f(300, 300); glEnd(); glFlush(); </code></pre> <p>But just calling one OpenGL function crashes it, reporting <code>GDB: Program received signal: "EXC_BAD_ACCESS".</code> First of all, if it did work, is that code good? Doing all that stuff at the top every time it gets called? Its supposed to be for 2d, with origin at top-left. And why is it crashing? I have CoreVideo and OpenGL linked and imported... I want to get a Cocoa application set up to use OpenGL so I can focus on the game code.</p> <p>Thanks. </p> http://stackoverflow.com/questions/1799070/what-might-cause-opengl-to-behave-differently-under-the-start-debugging-versus 2 What might cause OpenGL to behave differently under the "Start Debugging" versus "Start without debugging" options? drknexus 2009-11-25T18:38:47Z 2009-11-25T19:23:18Z <p>I have written a 3D-Stereo OpenGL program in C++. I keep track of the position objects in my display should have using timeGetTime after a timeBeginPeriod(1). When I run the program with "Start Debugging" my objects move smoothly across the display (as they should). When I run the program with "Start without debugging" the objects occationally freeze for several screen refreshes then jump to a new position. Any ideas as to what may be causing this problem and how to fix it?</p> <p>Edit: It seems like the jerkiness can be resolved after a short delay when I run through "Start without debugging" if I click the mouse button. My application is a console application (I take in some parameters when the program first starts). Might there be a difference in window focus between these two options? Is there an explicit way to force the focus to the OpenGL window (in full screen through glutFullScreen();) when I'm done taking input from the console window?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1794821/opengl-texture-wont-map-white-square 0 OpenGL texture won't map - white square? torch 2009-11-25T05:23:13Z 2009-11-25T14:06:00Z <p>Alright, so I'm using cairo to turn an SVG into image data for openGL textures.</p> <p>That part works.</p> <p>But now the texture I'm using won't map to the quad I'm making. It's just showing up as a blank square. </p> <p>Is there something up with the order I'm calling things in or is there some secret function I forgot to use?</p> <pre><code>const int SCREEN_WIDTH = 1280; const int SCREEN_HEIGHT = 720; const int SCREEN_BPP = 32; int frame = 0; SDL_Event event; bool quit; GLuint texture[1]; int main(int argc, char *argv[]) { g_type_init(); rsvg_init(); SDL_Surface *screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_OPENGL ); SDL_WM_SetCaption ("Cairo", NULL); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); /*2D stuff - it worked here glMatrixMode( GL_PROJECTION ); glLoadIdentity(); glOrtho( 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0, -1, 1 ); glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); glEnable (GL_BLEND); glEnable (GL_TEXTURE_2D); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_TEXTURE_2D); glEnable(GL_LIGHTING); glEnable(GL_COLOR_MATERIAL); */ //An attempt at setting up 3D stuff glEnable(GL_TEXTURE_2D); glMatrixMode( GL_MODELVIEW ); glMatrixMode( GL_PROJECTION ); glViewport(0,0,SCREEN_WIDTH, SCREEN_HEIGHT); glShadeModel(GL_SMOOTH); glClearColor(0.0,0.0,0.0,0.0); glClearDepth(1.0); glBlendFunc(GL_SRC_ALPHA, GL_ONE); glEnable(GL_BLEND); //glLoadIdentity(); float FlowerWidth = .5; float FlowerHeight = .5; float FlowerTextureWidth = 80; float FlowerTextureHeight = 80; float FlowerScaleWidth = 1; float FlowerScaleHeight = 1; cairo_surface_t* Flower; cairo_t* context; Flower = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, FlowerTextureWidth, FlowerTextureHeight); context = cairo_create(Flower); const gchar* Filename = "resources/area/haneda/lavender.svg"; RsvgHandle* SvgData = rsvg_handle_new_from_file(Filename, NULL); rsvg_handle_render_cairo_sub(SvgData, context,"#1000"); unsigned char *buffer = cairo_image_surface_get_data(Flower); cairo_surface_write_to_png(Flower,"flower.png"); //Make a texture glGenTextures(1, &amp;texture[1]); glBindTexture(GL_TEXTURE_2D, texture[1]); glPixelStoref(GL_UNPACK_ALIGNMENT, 1); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glGetError(); //or am I supposed to use GL_TEXTURE_2D? glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, FlowerHeight, FlowerWidth, 0, GL_BGRA, GL_UNSIGNED_BYTE, buffer); //done while (quit==false) { while(SDL_PollEvent(&amp;event)) { if(event.type == SDL_QUIT) { quit = true; } } /* FlowerScaleWidth+=.001; FlowerScaleHeight+=.001; cairo_scale(context,FlowerScaleWidth,FlowerScaleHeight); */ glBindTexture (GL_TEXTURE_2D, texture[1]); glBegin (GL_QUADS); glTexCoord2f (0.0, 0.0); glVertex3f (0.0, 0.0, 0.0); glTexCoord2f (FlowerWidth, 0.0); glVertex3f (FlowerWidth, 0.0, 0.0); glTexCoord2f (FlowerWidth, FlowerHeight); glVertex3f (FlowerWidth, FlowerHeight, 0.0); glTexCoord2f (0.0, FlowerHeight); glVertex3f (0.0, FlowerHeight, 0.0); glEnd (); glDeleteTextures(1, &amp;texture[1]); cairo_save (context); cairo_set_source_rgba (context, 0, 0, 0, 0); cairo_set_operator (context, CAIRO_OPERATOR_SOURCE); cairo_paint (context); cairo_restore (context); SDL_GL_SwapBuffers(); //glClear( GL_COLOR_BUFFER_BIT ); //SDL_Delay(100); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glGetError(); SDL_Delay(400); } } </code></pre> http://stackoverflow.com/questions/1762866/using-glshort-instead-of-glfloat-in-an-opengl-es-vertex-array 0 Using GL_SHORT instead of GL_FLOAT in an OpenGL ES vertex array Dimitris 2009-11-19T12:11:16Z 2009-11-25T14:01:43Z <p>I have this vertex array of a cube</p> <pre><code>float vertex_coordinates [] = { -12.43796, -12.43796, 12.43796, -12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, -12.43796, 12.43796, -12.43796, -12.43796, 12.43796, 12.43796, -12.43796, -12.43796, 12.43796, 12.43796, -12.43796, -12.43796, 12.43796, -12.43796, -12.43796, 12.43796, -12.43796, -12.43796, -12.43796, -12.43796, 12.43796, -12.43796, -12.43796, -12.43796, -12.43796, -12.43796, -12.43796, 12.43796, -12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, -12.43796, 12.43796, -12.43796, -12.43796, -12.43796, 12.43796, -12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, -12.43796, -12.43796, 12.43796, -12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, -12.43796, -12.43796, -12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, 12.43796, 12.43796, -12.43796, -12.43796, -12.43796, -12.43796, -12.43796, }; </code></pre> <p>At the moment I render it using</p> <pre><code>glVertexPointer(3, GL_FLOAT, 0, vertex__coordinates); // texture pointer ... // colour pointer glDrawArrays(GL_TRIANGLES, 0, size); </code></pre> <p>How would I go about converting the vertex array into values that would render precisely the same cube but instead using <code>GL_SHORT</code> as the second parameter to glVertexPointer in order to speed up my code?</p> http://stackoverflow.com/questions/1766284/opengl-position-and-orientation-from-modelview-matrix 0 openGL position and orientation from modelview matrix Adam Loska 2009-11-19T20:28:01Z 2009-11-25T13:28:50Z <p>Hello!</p> <p>My problem is the following:</p> <p>I have nested object in my opengl scene, and i only know their relative position and orientation.</p> <p>How do I get the absolute position and orientation of the inner object? I' thinking of calculating the modelview matrix of the inner object, and after that i have the current matrix, but how do i convert it to position and orientation? In other words, to two float vector, so I can call the following code:</p> <pre><code>glTranslatef(position.x,position.y,position.z); glRotatef(alignment.x,1.0f,0.0f,0.0f); glRotatef(alignment.y,0.0f,1.0f,0.0f); glRotatef(alignment.z,0.0f,0.0f,1.0f); </code></pre> <p>Thanks in advance!</p>