Tagged Questions

0
votes
1answer
17 views

Draw to offscreen renderbuffer in OpenGL ES (iPhone)

I'm trying to create an offscreen render buffer in OpenGL ES on the iPhone. I've created the buffer like this: glGenFramebuffersOES(1, &offscreenFramebuffer); …
0
votes
0answers
26 views

how to make backround of opengl window transparent.

Hi, 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 …
0
votes
2answers
58 views

Using GL_SHORT instead of GL_FLOAT in an OpenGL ES vertex array

I have this vertex array of a cube 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, …
2
votes
1answer
105 views

Can I do openGL geometry batching without transforming all the vertices by hand?

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' …
0
votes
0answers
36 views

GL_POINTS + glDrawArrays doesn’t draw all points unless I flip after each “tile” / OpenGL ES with Retained Backing

Does anyone know why this may happen: 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 …