active questions tagged opengles - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:41:41Zhttp://stackoverflow.com/feeds/tag/opengleshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1937535/floating-point-textures-in-opengl-es-2-01Floating Point Textures in OpenGL ES 2.0notlion2009-12-20T23:53:22Z2009-12-21T00:18:08Z
<p>I've been trying to figure out how to use float textures in GLES2. The API Reference (<a href="http://www.khronos.org/opengles/sdk/docs/man/glTexImage2D.xml" rel="nofollow">http://www.khronos.org/opengles/sdk/docs/man/glTexImage2D.xml</a>) says that only unsigned bytes and shorts can be used, but i've seen people saying it is supported elsewhere.</p>
<p>I could use GL_LUMINANCE as the texture format but that only gets me one float value.</p>
<p>If anyone has some insight i'd appreciate it.</p>
http://stackoverflow.com/questions/1853551/draw-to-offscreen-renderbuffer-in-opengl-es-iphone0Draw to offscreen renderbuffer in OpenGL ES (iPhone)David Ensminger2009-12-05T21:34:42Z2009-12-07T15:02:44Z
<p>I'm trying to create an offscreen render buffer in OpenGL ES on the iPhone. I've created the buffer like this:</p>
<pre><code> glGenFramebuffersOES(1, &offscreenFramebuffer);
glBindFramebufferOES(GL_FRAMEBUFFER_OES, offscreenFramebuffer);
glGenRenderbuffersOES(1, &offscreenRenderbuffer);
glBindRenderbufferOES(GL_RENDERBUFFER_OES, offscreenRenderbuffer);
glFramebufferRenderbufferOES(GL_FRAMEBUFFER_OES, GL_COLOR_ATTACHMENT0_OES, GL_RENDERBUFFER_OES, offscreenRenderbuffer);
</code></pre>
<p>But I'm confused on how to render the storage. Apple's documentation says to use the EAGLContext renderBufferStorage:fromDrawable: method, but this seems to only work for one render buffer (the main one being displayed). If I use the normal OpenGL function glRenderBufferStorageOES, then I can't seem to get it to display. Here's the code:</p>
<pre><code> // this is in the initialization section:
glRenderbufferStorageOES(GL_RENDERBUFFER_OES, GL_RGB8_OES, backingWidth, backingHeight);
// and this is when I'm trying to draw to it and display it:
glBindFramebufferOES(GL_FRAMEBUFFER_OES, offscreenFramebuffer);
GLfloat vc[] = {
0.0f, 0.0f, 0.0f,
10.0f, 10.0f, 10.0f,
0.0f, 0.0f, 0.0f,
-10.0f, -10.0f, -10.0f,
};
glLoadIdentity();
glEnableClientState(GL_VERTEX_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, vc);
glDrawArrays(GL_LINES, 0, 4);
glDisableClientState(GL_VERTEX_ARRAY);
glBindRenderbufferOES(GL_RENDERBUFFER_OES, offscreenRenderbuffer);
[context presentRenderbuffer:GL_RENDERBUFFER_OES];
</code></pre>
<p>Doing it this way, nothing is displayed on the screen. However, if I switch out the references to "offscreen...Buffer" to the buffers that were created with the renderBufferStorage method, it works fine.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1808596/how-to-make-backround-of-opengl-window-transparent0how to make backround of opengl window transparent.Aditya.Sen2009-11-27T12:50:21Z2009-11-27T12:50:21Z
<p>Hi,</p>
<p>I am making an opengles 2.0 application where i need to make the background of the window transparent and then show a blended object over it. Please can someone tell me how can i make window background transparent. The appearance i want is that it sud appear as if only a blended object is in front.
Any help will be greatly appreciated. Thanks in advance.</p>
<p>With regards,</p>
<p>Aditya</p>
http://stackoverflow.com/questions/1762866/using-glshort-instead-of-glfloat-in-an-opengl-es-vertex-array0Using GL_SHORT instead of GL_FLOAT in an OpenGL ES vertex arrayDimitris2009-11-19T12:11:16Z2009-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/1735089/glpoints-gldrawarrays-doesnt-draw-all-points-unless-i-flip-after-each-tile0GL_POINTS + glDrawArrays doesn't draw all points unless I flip after each "tile" / OpenGL ES with Retained BackingDJayC2009-11-14T18:12:17Z2009-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>
http://stackoverflow.com/questions/1684518/can-i-do-opengl-geometry-batching-without-transforming-all-the-vertices-by-hand2Can I do openGL geometry batching without transforming all the vertices by hand?spencewah2009-11-05T23:59:39Z2009-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) &((GLushort *)0)[3 * mesh.sBoneBatches.pnBatchOffset[batchNum]]);
[tb addIndices:indices Count:i32Tris * 3];
NSMutableSet * alreadyVisitedIndices = [NSMutableSet setWithCapacity:i32Tris*3];
for(int i = 0; i < 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 < 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>