FinishSurfaces(): Difference between revisions
From The DarkMod Wiki
Jump to navigationJump to search
add |
m add link |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
This is a method inside the closed-source part of the idtech4 engine. It '''doubles two-sided surfaces and calculates the shadow hull'''. | This is a method inside the closed-source part of the idtech4 engine. It '''doubles two-sided surfaces and calculates the shadow hull'''. | ||
twosided | So surfaces with the [[twosided]] keyword in their shader simply get their data doubled, so they get rendered twice, once from front and once from back. | ||
'''FinishSurfaces()''' doubles the data by doubling the entire surface, copying the data (flipped normals, tangents, reverse indices for each tris). and appending the surface at the end. | |||
== See also == | == See also == |
Latest revision as of 08:38, 1 July 2011
This is a method inside the closed-source part of the idtech4 engine. It doubles two-sided surfaces and calculates the shadow hull.
So surfaces with the twosided keyword in their shader simply get their data doubled, so they get rendered twice, once from front and once from back.
FinishSurfaces() doubles the data by doubling the entire surface, copying the data (flipped normals, tangents, reverse indices for each tris). and appending the surface at the end.