My question could be stupid but I didn't find good example of triangle strip utilization:
https://i.sstatic.net/KL8jk.png
With vertices like that:
A: -0.5f, -0.5f, // Bottom left.
B: -0.5f, 0.5f, // Top left.
C: 0.5f, -0.5f, // Bottom Right.
D: 0.5f, 0.5f // Top right.
----------------------------------
B--D
|\ |
| \|
A--C
Sometimes, in examples, we can find this configuration:
- A, B, C, C, B, D
or this:
- A, B, C, D
What is right? I've tried both and both works.
Now I would like to use degenerate triangle to merge two square.
B--D F--H
|\ | |\ |
| \| | \|
A--C E--G
Here is what I've got:
ABCD + DEEF + EFGH
But here again, I've got some artifacts sometimes.