Home
last modified time | relevance | path

Searched refs:numSegsAlloc (Results 1 – 2 of 2) sorted by relevance

/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dp_polyobj.h80 size_t numSegsAlloc; // number of segs allocated member
H A Dp_polyobj.c323 if (po->segCount >= po->numSegsAlloc) in Polyobj_addSeg()
325 po->numSegsAlloc = po->numSegsAlloc ? po->numSegsAlloc * 2 : 4; in Polyobj_addSeg()
327 po->numSegsAlloc * sizeof(seg_t *), in Polyobj_addSeg()
1372 printf("segCount = %d, numSegsAlloc = %d\n", po->segCount, po->numSegsAlloc); in Polyobj_InitLevel()