Home
last modified time | relevance | path

Searched defs:SETPVSBIT (Results 1 – 3 of 3) sorted by relevance

/dports/games/xonotic/Xonotic/source/darkplaces/
H A Dmodel_brush.h726 #define SETPVSBIT(pvs,b) (void) ((b) >= 0 ? (unsigned char) ((pvs)[(b) >> 3] |= (1 << ((b) & 7))) :… macro
/dports/games/darkplaces/darkplaces/
H A Dmodel_brush.h724 #define SETPVSBIT(pvs,b) (void) ((b) >= 0 ? (unsigned char) ((pvs)[(b) >> 3] |= (1 << ((b) & 7))) :… macro
/dports/games/nexuiz/Nexuiz/sources/darkplaces/
H A Dmodel_brush.h699 #define SETPVSBIT(pvs,b) ((b) >= 0 ? ((pvs)[(b) >> 3] |= (1 << ((b) & 7))) : false) macro