I am currently making a 2D physics game for android, using java and openGLES.
A lot of my objects are soft body and deformed by the physics, so I would like to draw the deformed physics mesh instead of a static object.
ATM I have to refill the vertex buffer (for gl.glDrawElements) every single frame with my new updated vertex data before I draw. This is unacceptably slow.
Is there a way to directly manipulate the buffer in my physics update from java?
Or has anyone else ran into this problem and found some better way to do this?