Top "Gl-triangle-strip" questions

A triangle strip is a series of connected triangles, sharing vertices, allowing for faster rendering and more efficient memory usage for computer graphics.

GL_TRIANGLE_STRIP vs GL_TRIANGLE_FAN

I need an example of a polygon that can be done only by GL_TRIANGLE_STRIP and another polygon that …

opengl gl-triangle-strip
Generate a plane with triangle strips

What would be the best algorithm to generate a list of vertices to draw a plane using triangle strips? I'm …

c++ opengl geometry plane gl-triangle-strip
Polygon triangulation into triangle strips for OpenGL ES

I am looking for a fast polygon triangulation algorithm that can triangulate not very complex 2D concave polygons (without holes) …

algorithm cocos2d-iphone opengl-es-2.0 triangulation gl-triangle-strip
What's the de facto standard of triangle winding direction in OpenGL?

We have two options in triangle winding direction, clock-wise counter-clockwise Anyway converting between them could take some cost. I want …

opengl standards gl-triangle-strip
Cube using single GL_TRIANGLE_STRIP

Is it possible to draw a whole cube using just a single GL_TRIANGLE_STRIP? Obviously it's just the cube …

opengl gl-triangle-strip