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

  /development/samples/RenderScript/Balls/src/com/example/android/rs/balls/
BallsRS.java 65 ProgramVertex pvs = sb.create(); local
66 pvs.bindConstants(mVpConsts.getAllocation(), 0);
67 mRS.bindProgramVertex(pvs);
  /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...]
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,
server.h 65 byte *pvs, *phs; // fully expanded and decompressed member in struct:__anon10616
  /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...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 218 ProgramVertex pvs = sb.create(); local
219 pvs.bindConstants(mPvStarAlloc.getAllocation(), 0);
220 mScript.set_gPVStars(pvs);
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 179 ProgramVertex pvs = builder.create(); local
180 pvs.bindConstants(mPvConsts.getAllocation(), 0);
181 mRS.bindProgramVertex(pvs);
183 mScript.set_vertSpaceClouds(pvs);
190 pvs = builder.create();
191 pvs.bindConstants(mPvConsts.getAllocation(), 0);
192 mRS.bindProgramVertex(pvs);
193 mScript.set_vertBgStars(pvs);
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 188 ProgramVertex pvs = builder.create(); local
189 pvs.bindConstants(mPvConsts.getAllocation(), 0);
190 mRS.bindProgramVertex(pvs);
191 mScript.set_vertDots(pvs);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 203 ProgramVertex pvs = builder.create(); local
204 pvs.bindConstants(mPvConsts.getAllocation(), 0);
205 mRS.bindProgramVertex(pvs);
206 mScript.set_vertDots(pvs);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 438 ProgramVertex pvs = sb.create(); local
439 pvs.bindConstants(mPvStarAlloc.getAllocation(), 0);
440 mScript.set_gPVStars(pvs);

Completed in 580 milliseconds