Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 7 down vote accepted

It not possible to render wireframe in OpenGL ES. You can draw using lines/line strip instead of triangles but some of the lines will be lost. It's not real wireframe but it can help you see some problems. In OpenGL(not ES) you can change the way polygons are rendered using glPolygonMode, but this is not supported in OpenGL ES

share|improve this answer
1  
This is a pretty big omission, considering wireframe mode is most useful for debugging, and portable apps are particularly difficult to debug.. – bobobobo Sep 26 '12 at 15:56

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.

share|improve this answer
thanks for the reply, however I'm not sure how this relates to wireframe? – Rich Sep 27 '09 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 '09 at 13:42
No man, GL_COLOR_ARRAY fills solid colors. Wireframe should draw hollow polygons, like this – bobobobo Sep 26 '12 at 15:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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