Tagged Questions

0
votes
0answers
19 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
45 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, …
0
votes
0answers
28 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 …
2
votes
1answer
95 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' …