Multi instancing support in OpenGL-ES

Hi,

I’m new to OpenGL-ES development.
As I understand from the GL-ES manual and specs document, for rendering a particular primitive we need to call few functions to set the parameter for the primitive and then call the glDrawArrays() to render the primitive.

e.g. to draw a line, the application code should look like


            /* Line width is by default 1 pixel. */
            glLineWidthx(nThickness);

            /* Set the current vertices to use from aVertices array. */
            glVertexPointer(2, GL_SHORT, 0, aVertices);

            /* Set the current vertices to use color from colors array. */
            glColorPointer(4, GL_BYTE, 0, aColors);
           
            /* Draw the primitive using elements from vertices array. */
            glDrawArrays(GL_LINES, 0, 1);

where glLineWidthx() should set the value of a global variable (because we don’t have any structures in GL-ES to pass the data to implementation layer) to nThickness and which will be used by the line drawing function.

Now my query is if we use global variables in the implementation, how can we support the multi instancing capability.

Please help me in clearing this doubt and let me know if I’m wrong in my understanding of the GL-ES application/implementation code.

Thanking You in Advance,
Himanshu

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