Home
last modified time | relevance | path

Searched refs:brushBlock (Results 1 – 3 of 3) sorted by relevance

/dports/games/dhewm3/dhewm3-1.5.1/neo/cm/
H A DCollisionModel_files.cpp446 …model->brushBlock = (cm_brushBlock_t *) Mem_Alloc( sizeof( cm_brushBlock_t ) + token.GetIntValue()… in ParseBrushes()
447 model->brushBlock->bytesRemaining = token.GetIntValue(); in ParseBrushes()
448 model->brushBlock->next = ( (byte *) model->brushBlock ) + sizeof( cm_brushBlock_t ); in ParseBrushes()
H A DCollisionModel_load.cpp315 if ( model->brushBlock == NULL ) { in FreeBrush()
395 Mem_Free( model->brushBlock ); in FreeModel()
557 model->brushBlock = NULL; in AllocModel()
690 if ( model->brushBlock && model->brushBlock->bytesRemaining >= size ) { in AllocBrush()
691 brush = (cm_brush_t *) model->brushBlock->next; in AllocBrush()
692 model->brushBlock->next += size; in AllocBrush()
693 model->brushBlock->bytesRemaining -= size; in AllocBrush()
H A DCollisionModel_local.h181 cm_brushBlock_t * brushBlock; // memory block with all brushes member