GLRon
11-28-2010, 06:14 PM
If you give a triangle strip six vertices (v0, v1, v2, v3, v4, v5, v6), according to the docs, it doesn't draw:
(v0, v1, v2) , (v1, v2, v3) , (v2, v3, v4) , (v3, v4, v5)
It actually draws:
(v0, v1, v2) , (v1, v3, v2) , (v2, v3, v4) , (v3, v5, v4)
Are there any practical cases where this matters? I mean, the output should appear identical in POINT, LINE, or FILL mode with or without vertex colors.
(v0, v1, v2) , (v1, v2, v3) , (v2, v3, v4) , (v3, v4, v5)
It actually draws:
(v0, v1, v2) , (v1, v3, v2) , (v2, v3, v4) , (v3, v5, v4)
Are there any practical cases where this matters? I mean, the output should appear identical in POINT, LINE, or FILL mode with or without vertex colors.