FinishSurfaces(): Difference between revisions

From The DarkMod Wiki
Jump to navigationJump to search
(add)
(No difference)

Revision as of 08:15, 2 February 2011

FinishSurfaces()

This is a method inside the closed-source part of the idtech4 engine. It doubles two-sided surfaces and calculates the shadow hull.

twosided surfaces are simply get their data doubled, so they get rendered twice, once from front and once fro back.

FinishSurfaces() doubles the data either by:

  1. doubling the entire surface, copying the data there flipped, and appending the surface at the end
  2. or by duplicating the data and tacking it at the end of the original surface

It is a bit unclear when which method is choosen, because an ivy model with 12 tris in one surface gets the data duplicated in the surface itself, while a combined model with one surface of 862 tris gets the data tacked at the end as a new surface.

See also