Choosing the Level of Geometry Complexity#

An appropriate level of geometry complexity must be used for each object or portion of an object. Here are some examples of wasteful usage:

  • Using a large number of polygons on an object that will never cover more than a small area of the screen.

  • Using polygons for detail that will never be seen due to camera angle or culling.

  • Using large numbers of primitives for objects that may be drawn with fewer primitives, such as multiple polygons to render a single quad.

Shader techniques such as bump mapping should be considered to minimise geometry complexity, but still maintain a high level of perceived detail. Other techniques such as Level of Detail should also be used. This is particularly true for things such as reflection passes, where higher amounts of geometry may not be visible.