Tagged Questions

2
votes
1answer
94 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
2answers
42 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 …