HomeSort by relevance Sort by last modified time
    Searched refs:pvs (Results 1 - 7 of 7) sorted by null

  /external/quake/quake/src/QW/server/
sv_ents.c 26 The PVS must include a small area around the client to allow head bobbing
40 byte *pvs; local
46 // if this is a leaf, accumulate the pvs bits
51 pvs = Mod_LeafPVS ( (mleaf_t *)node, sv.worldmodel);
53 fatpvs[i] |= pvs[i];
76 Calculates a PVS that is the inclusive or of all leafs within 8 pixels of the
322 void SV_WritePlayersToClient (client_t *client, edict_t *clent, byte *pvs, sizebuf_t *msg)
347 if (pvs[ent->leafnums[i] >> 3] & (1 << (ent->leafnums[i]&7) ))
450 byte *pvs; local
461 // find the client's PVS
    [all...]
sv_init.c 180 Expands the PVS and calculates the PHS
199 sv.pvs = Hunk_Alloc (rowbytes*num);
200 scan = sv.pvs;
220 scan = sv.pvs;
234 // or this pvs row into the phs
235 // +1 because pvs is 1 based
239 src = (unsigned *)sv.pvs + index*rowwords;
server.h 65 byte *pvs, *phs; // fully expanded and decompressed member in struct:__anon6934
sv_send.c 277 mask = sv.pvs; // leaf 0 is everything;
289 mask = sv.pvs + leafnum * 4*((sv.worldmodel->numleafs+31)>>5);
313 // -1 is because pvs rows are 1 based, not 0 based like leafs
583 // send over all the objects that are in the PVS
pr_cmds.c 566 byte *pvs; local
604 // get the PVS for the entity
607 pvs = Mod_LeafPVS (leaf, sv.worldmodel);
608 memcpy (checkpvs, pvs, (sv.worldmodel->numleafs+7)>>3 );
622 If (self.origin + self.viewofs) is not in the PVS of the current target,
  /external/quake/quake/src/WinQuake/
sv_main.cpp 356 The PVS must include a small area around the client to allow head bobbing
370 byte *pvs; local
376 // if this is a leaf, accumulate the pvs bits
381 pvs = Mod_LeafPVS ( (mleaf_t *)node, sv.worldmodel);
383 fatpvs[i] |= pvs[i];
406 Calculates a PVS that is the inclusive or of all leafs within 8 pixels of the
431 byte *pvs; local
436 // find the client's PVS
438 pvs = SV_FatPVS (org);
440 // send over all entities (excpet the client) that touch the pvs
    [all...]
pr_cmds.cpp 689 byte *pvs; local
727 // get the PVS for the entity
730 pvs = Mod_LeafPVS (leaf, sv.worldmodel);
731 memcpy (checkpvs, pvs, (sv.worldmodel->numleafs+7)>>3 );
745 If (self.origin + self.viewofs) is not in the PVS of the current target,
    [all...]

Completed in 6073 milliseconds