We all know that the basic geometry we’re concerned with in real-time rending is usually mentioned in conversation and text as the Polygon. And we also know that a polygon is typically made of 2 faces, especially when dealing with quads. So when we are working with our modeling team, do we need to be concerned with the face count or the poly count? In most cases, the poly count will be half the number of triangles and give a false perception that the geometry load on the render is less than it is. Or is that true? In the case of a quad, we’re really only adding another vertex because the two at the joining edge between two triangles are shared.
My question then is which is the true measure of performance? Do you look at the face count or the poly count?
Thanks for your input.