I read it should be possible to transfer pixel data directly inside the GPU memory using pixel buffer objects. What I'm not understanding is if PBO is supported in OpenGL ES 2.0. I found incoherent information. Is PBO supported under OpenGL ES 2.0?
If not, is there any other way with OpenGL ES 2.0 to place data (RGBA32) directly into a texture?
glTexImage2D), which is then copied asynchronously (and probably faster, because it's GPU -> GPU). Maybe you already know that, but your last sentence is a bit misleading. – Christian Rau Dec 10 '11 at 12:33