Hi,
I have an iOS unity app that calls a plugin to update a texture in unity. This runs reasonably fast with the texture upload taking about 3-4ms. This has been working fine for a few months.
When I am not drawing any 3d models it still runs at this speed, but as soon as I draw a model it takes 60ms plus!
This is my C++ texture upload code:
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
glBindTexture(GL_TEXTURE_2D, texID);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_BGRA, GL_UNSIGNED_BYTE, im->data());
It is solely the glTexImage2D part that becomes 15x slower when a model is drawn. Everything else in the calling path runs at the same speed.
Any clues as to why this is happening? The only real change has been upgrading from Unity 3.5 beta to 3.5 and it was working fine in 3.5.
Addendum:
- The texture update is being called from an Update function in a script on every update.
- The image is a 640x480 BGRA image.