Scalable SOP manipulation package.

This commit is contained in:
Alan Mishchenko
2015-03-23 18:40:38 +07:00
parent 5f77e7ae8f
commit efdd26f86d
14 changed files with 1532 additions and 42 deletions
+1 -1
View File
@@ -124,7 +124,7 @@ static inline Vec_Bit_t * Vec_BitStartFull( int nSize )
{
Vec_Bit_t * p;
nSize = (nSize >> 5) + ((nSize & 31) > 0);
p = Vec_BitAlloc( nSize );
p = Vec_BitAlloc( nSize * 32 );
p->nSize = nSize * 32;
memset( p->pArray, 0xff, sizeof(int) * nSize );
return p;