Integrated buffering and sizing.

This commit is contained in:
Alan Mishchenko
2013-08-08 18:23:00 -07:00
parent 655dc4e727
commit 881b2ec46f
16 changed files with 697 additions and 99 deletions
+5
View File
@@ -336,6 +336,11 @@ static inline float Vec_FltEntry( Vec_Flt_t * p, int i )
assert( i >= 0 && i < p->nSize );
return p->pArray[i];
}
static inline float * Vec_FltEntryP( Vec_Flt_t * p, int i )
{
assert( i >= 0 && i < p->nSize );
return p->pArray + i;
}
/**Function*************************************************************