MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / InitFreePoints

Function InitFreePoints

renderer/HardwareClipper.cpp:28–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26vector Clip_plane_point;
27
28void InitFreePoints(void) {
29 int i;
30
31 for (i = 0; i < MAX_POINTS_IN_POLY; i++) {
32 free_points[i] = &temp_points[i];
33 }
34 free_point_num = 0;
35}
36
37g3Point *GetTempPoint(void) {
38 ASSERT(free_point_num < MAX_POINTS_IN_POLY);

Callers 2

g3_StartFrameFunction · 0.85
CheckTempPointsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected