What is the Function in OpenGL ES that have a same role

I want to know the Function in OpenGL ES.

I use that Function, glDrawPixels in OpenGL.
But I don’t know the function what I use in OpenGL ES.
Please teach me same Function in OpenGL ES.

To know about all the supported functions in OpenGL ES, you must have to download the OpenGL ES 1.0 manual and its specification from this site.

Direct access to the framebuffer is pretty slow on HW accelerated implementations hence support was removed from OGLES. You’ll have to translate your accesses into polygons.

Another option is to write your pixel updates into your own allocated memory array and then create a texture from this memory area and then update the framebuffer area by rendering a quad textured with your generated texture.

Hope this helps,

K-

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.