I'm a newbie to OpenGL/ES and OpenTK, so forgive me if my understanding/terminology is a little off.
Basically,
- I'm drawing a series of [white] triangle-based-cubes using a Vertex Buffer Object Array (VBO's).
- I then use the same vertices to render a [black] wireframe for the cubes, using lines & polygonOffset().
- Problem is, I can see the wireframes that are rendered on the back-faces (i.e. see through), I'm unsure why (?).
- I'm using 4-value colours (rgba), nothing I do to the 4th value (alpha/opacity) seems to do anything.
I have defined normals for the triangle-based cube sections, a total of 36 (2 x 3 verts/tri x 6 sides), however, I haven't defined any normals for the wireframe line segments (at present).
Does anyone have any idea of what I might be doing wrong, solely based on OpenGL pitfalls/experience.
JFYI, I'm using OpenTK-OpenGL ES11 on mono/monotouch (C#)
P.S. If you're wondering why I haven't posted any code, that is because the rendering code is mixed with game logic and spread across multiple files. I'll try to make a simple, self contained example as soon as I can, if necessary.