hot questions tagged opengles - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:04:43Z http://stackoverflow.com/feeds/tag?tagnames=opengles&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/1684518/can-i-do-opengl-geometry-batching-without-transforming-all-the-vertices-by-hand 2 Can I do openGL geometry batching without transforming all the vertices by hand? spencewah 2009-11-05T23:59:39Z 2009-11-08T17:45:40Z <p>I've been trying to set up some sort of geometry batching for a week or so, there isn't a ton of information online as to how other people have implemented this. Basically I just want to 'catch' every draw call, sort the corresponding meshes by texture, and then draw all meshes that share a texture in one go.</p> <p>What I've been doing is going through each vertex in the mesh, transform it by the Model-View matrix (to put it into world space), and then store that vertex in a larger array to await some later rendering. This works, but it runs terribly slowly... as it seems like I'm doing in software what openGL would be doing in hardware (all the matrix transforms). Is there some other way to do batching that doesn't require you to do the transforms by hand? Can I say "hey, GL, here are a bunch of vertices and here's how they should be transformed" and then send it on its merry way?</p> <p>I should mention I'm doing this on iPhone, so I'm bound by openGLES and the limited hardware. I've watched the <a href="http://gamemakers.ngmoco.com/post/111712416/stanford-university-and-apple-were-kind-enough-to" rel="nofollow">Stanford ngmoco presentation on optimizations</a>, and I've been following <a href="http://craiggiles.wordpress.com/" rel="nofollow">this guide</a> to model my own texture batcher.</p> <p>Here's an example of what I'm doing. This is for skinned meshes... I use PowerVR's .pod format which exports an interleaved array of the vertex information.</p> <pre><code>TextureBatcher * tb = [TextureBatcher getSharedTextureBatcher]; // The next line gives me the indices of the verts used by this batch GLushort * indices = (GLushort*) (mesh.sFaces.pData + (uint) &amp;((GLushort *)0)[3 * mesh.sBoneBatches.pnBatchOffset[batchNum]]); [tb addIndices:indices Count:i32Tris * 3]; NSMutableSet * alreadyVisitedIndices = [NSMutableSet setWithCapacity:i32Tris*3]; for(int i = 0; i &lt; i32Tris*3; i++){ if([alreadyVisitedIndices containsObject:[NSNumber numberWithInt:indices[i]]]){ continue; } else { GLfloat * verts = (GLfloat*)(mesh.pInterleaved + (uint)mesh.sVertex.pData + (indices[i]*mesh.sVertex.nStride)); GLfloat * normals = (GLfloat*)(mesh.pInterleaved + (uint)mesh.sNormals.pData + (indices[i]*mesh.sNormals.nStride)); GLfloat * uvs = (GLfloat*)(mesh.pInterleaved + (uint)mesh.psUVW[uvSet].pData + (indices[i]*mesh.psUVW[uvSet].nStride)); PVRTVec4 vert = PVRTVec4(verts[0], verts[1], verts[2], 1); PVRTVec4 normal = PVRTVec4(normals[0], normals[1], normals[2], 0); //w=0 to skip translation GLfloat u = uvs[0]; GLfloat v = uvs[1]; PVRTVec4 newVert = PVRTVec4(0.f); PVRTVec4 newNormal = PVRTVec4(0.f); if(bSkinning){ for(int j = 0; j &lt; mesh.sBoneIdx.n; j++){ PVRTMat4 mat = boneMatrices[(mesh.pInterleaved + (uint)mesh.sBoneIdx.pData + (indices[i]*mesh.sBoneIdx.nStride))[j]]; GLfloat weight = ((GLfloat*)(mesh.pInterleaved + (uint)mesh.sBoneWeight.pData + (indices[i]*mesh.sBoneWeight.nStride)))[j]; PVRTMat4 weightedMatrix = mat * weight; newVert += weightedMatrix * vert; // TODO this should use the inverse transpose but whatever it works. newNormal += weightedMatrix * normal; } [tb addVertex: newVert Normal: newNormal U: u V: v]; } else { [tb addVertex: (mModelView * vert) Normal: (mModelView * normal) U: u V: v]; } [alreadyVisitedIndices addObject:[NSNumber numberWithInt:indices[i]]]; } </code></pre> http://stackoverflow.com/questions/1735089/glpoints-gldrawarrays-doesnt-draw-all-points-unless-i-flip-after-each-tile 0 GL_POINTS + glDrawArrays doesn't draw all points unless I flip after each "tile" / OpenGL ES with Retained Backing DJayC 2009-11-14T18:12:17Z 2009-11-14T19:00:38Z <p>Does anyone know why this may happen:</p> <p>I draw to a 2D screen using glDrawArrays with GL_POINTS (interleaved array). If I flip the buffers (presentRenderbuffer) after ever call to glDrawArrays -- so after each "tile" is drawn -- everything works fine.</p> <p>This is, of course, inefficient.. so if I move the presentRenderBuffer outside of the draw loop, I get the errors. Basically parts of the screen just don't draw, and it's always in the same place (the middle of the screen, horizontally).</p> <p>I'm using retainedbacking (as I update only tiles that changed) so I need to rely on the frame buffer staying the same between draws so I can draw over it.</p> <p>Any ideas why presentRenderBuffer after each tile works fine, while one final presenRenderBuffer after all of the draws wouldn't?</p> <p>EDIT: Also, adding glFlush() in the tile draw loop, and moving presentRenderBuffer outside the loop produces the correct image as well.</p>