vote up 0 vote down star

Hi,

I can see how to render wireframe primitives in open gl. By using glPolygonMode, however this call seems to be missing from Open GL ES.

Does anyone know how to render primitives in wireframe on Open GL ES?

Thanks Rich

flag

60% accept rate

1 Answer

vote up 0 vote down

I'm not entirely certain, my exposure to OpenGL ES is just enough to it dangerous for me to play with, but my impression of how it works is:

glEnableClientState(GL_TEXTURE_COORD_ARRAY);

Turns on drawing full textures. Rather than doing that, if you use

glEnableClientState(GL_COLOR_ARRAY);

and use the color array instead of the texture array, then it will simply draw lines instead of fill textures. I think.

link|flag
thanks for the reply, however I'm not sure how this relates to wireframe? – Rich Sep 27 at 13:53
Is not a wireframe just the lines that create the polygons? You must create polygons using points then fill them with textures to get the textured look. If you create polygons then draw the outline of the polygons instead, that will indeed be a wireframe. – Ed Marty Sep 28 at 13:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.