Searched defs:spot (Results 1 - 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestSpotLight.java57 SpotLight spot; field in class:TestSpotLight
64 spot=new SpotLight();
66 spot.setSpotRange(1000);
67 spot.setSpotInnerAngle(5*FastMath.DEG_TO_RAD);
68 spot.setSpotOuterAngle(10*FastMath.DEG_TO_RAD);
69 spot.setPosition(new Vector3f(77.70334f, 34.013165f, 27.1017f));
70 spot.setDirection(lightTarget.subtract(spot.getPosition()));
71 spot.setColor(ColorRGBA.White.mult(2));
72 rootNode.addLight(spot);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/
H A DSDL_error.c137 char tmp[32], *spot = tmp; local
138 *spot++ = *fmt++;
139 while ( (*fmt == '.' || (*fmt >= '0' && *fmt <= '9')) && spot < (tmp+SDL_arraysize(tmp)-2) ) {
140 *spot++ = *fmt++;
142 *spot++ = *fmt++;
143 *spot++ = '\0';
144 switch (spot[-2]) {
/external/qemu/distrib/sdl-1.2.15/src/audio/windx5/
H A DSDL_dx5audio.c360 { DWORD spot = cursor; local
361 if ( spot < lastchunk ) {
362 spot += NUM_BUFFERS;
364 if ( spot > lastchunk+1 ) {
366 (spot - (lastchunk+1)));
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_events.c289 /* Cut an event, and return the next valid spot, or the tail */
291 static int SDL_CutEvent(int spot) argument
293 if ( spot == SDL_EventQ.head ) {
297 if ( (spot+1)%MAXEVENTS == SDL_EventQ.tail ) {
298 SDL_EventQ.tail = spot;
309 for ( here=spot; here != SDL_EventQ.tail; here = next ) {
313 return(spot);
337 int spot; local
345 spot = SDL_EventQ.head;
346 while ((used < numevents)&&(spot !
[all...]
/external/quake/quake/src/QW/client/
H A Dpmove.c250 // first try moving directly to the next spot
693 vec3_t spot; local
710 VectorMA (pmove.origin, 24, flatforward, spot);
711 spot[2] += 8;
712 cont = PM_PointContents (spot);
715 spot[2] += 24;
716 cont = PM_PointContents (spot);
901 // set onground, watertype, and waterlevel for final spot
/external/webkit/Source/JavaScriptCore/wtf/
H A DVector.h1030 T* spot = begin() + position; local
1031 TypeOperations::moveOverlapping(spot, end(), spot + dataSize);
1033 new (&spot[i]) T(data[i]);
1047 T* spot = begin() + position; local
1048 TypeOperations::moveOverlapping(spot, end(), spot + 1);
1049 new (spot) T(*data);
1081 T* spot = begin() + position;
1082 spot
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11video.c284 char *spot; local
292 spot = SDL_getenv("SDL_VIDEO_X11_WMCLASS");
293 if ( spot ) {
294 SDL_strlcpy(classname, spot, maxlen);
310 spot = SDL_strrchr(linkfile, '/');
311 if ( spot ) {
312 SDL_strlcpy(classname, spot+1, maxlen);

Completed in 224 milliseconds