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

  /external/proguard/src/proguard/gui/splash/
TimeSwitchSprite.java 26 * This Sprite displays another Sprite in a given time interval.
27 * The time of the encapsulated Sprite is shifted by the start time.
31 public class TimeSwitchSprite implements Sprite
35 private final Sprite sprite; field in class:TimeSwitchSprite
39 * Creates a new TimeSwitchSprite for displaying a given Sprite starting at
42 * @param sprite the toggled Sprite.
44 public TimeSwitchSprite(long onTime, Sprite sprite
    [all...]
ColorSprite.java 26 * This Sprite colors another given sprite.
30 public class ColorSprite implements Sprite
33 private final Sprite sprite; field in class:ColorSprite
38 * @param color the variable color of the given sprite.
39 * @param sprite the sprite that will be colored and painted.
42 Sprite sprite)
    [all...]
FontSprite.java 26 * This Sprite sets the font for another given sprite.
30 public class FontSprite implements Sprite
33 private final Sprite sprite; field in class:FontSprite
38 * @param font the variable Font of the given sprite.
39 * @param sprite the sprite that will be provided of a font and painted.
42 Sprite sprite)
    [all...]
ClipSprite.java 26 * This Sprite encapsulates another Sprite, which is clipped by a clip Sprite.
30 public class ClipSprite implements Sprite
34 private final Sprite clipSprite;
35 private final Sprite sprite; field in class:ClipSprite
40 * @param insideClipColor the background color inside the clip sprite.
41 * @param outsideClipColor the background color outside the clip sprite.
42 * @param clipSprite the clip Sprite
    [all...]
BufferedSprite.java 27 * This Sprite encapsulates another Sprite, which is then buffered in an Image.
31 public class BufferedSprite implements Sprite
37 private final Sprite sprite; field in class:BufferedSprite
50 * @param sprite the Sprite that is painted in the buffer.
59 Sprite sprite,
68 sprite,
    [all...]
ShadowedSprite.java 26 * This Sprite adds a drop shadow to another Sprite.
30 public class ShadowedSprite implements Sprite
36 private final Sprite sprite; field in class:ShadowedSprite
44 * @param xOffset the variable x-offset of the shadow, relative to the sprite itself.
45 * @param yOffset the variable y-offset of the shadow, relative to the sprite itself.
49 * @param sprite the Sprite to be painted with its shadow.
55 Sprite sprite
    [all...]
SplashPanel.java 31 * This JPanel renders an animated Sprite.
40 private final Sprite sprite; field in class:SplashPanel
50 * Creates a new SplashPanel with the given Sprite, which will be animated
52 * @param sprite the Sprite that will be animated.
54 * animating the Sprite (between 0 and 1).
56 public SplashPanel(Sprite sprite, double processorLoad)
58 this(sprite, processorLoad, (long)Integer.MAX_VALUE)
212 Sprite sprite = local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
FixedAnimationComponent.java 35 // We look up the sprite component each frame so that this component can be shared.
37 SpriteComponent sprite = parentObject.findByClass(SpriteComponent.class); local
38 if (sprite != null) {
39 sprite.playAnimation(mAnimationIndex);
GhostComponent.java 71 // Do we have a sprite we can fade out?
72 SpriteComponent sprite = parentObject.findByClass(SpriteComponent.class); local
73 if (sprite != null) {
74 sprite.setOpacity(mLifeTime);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_point.c 32 * Notes on wide points and sprite mode:
34 * In wide point/sprite mode we effectively need to convert each incoming
48 * vertically from 0 to 1 down the sprite.
90 * Set the vertex texcoords for sprite mode.
115 /* If there are lots of sprite points (and why wouldn't there be?) it
125 const boolean sprite = (boolean) stage->draw->rasterizer->point_quad_rasterization; local
168 if (sprite) {
  /frameworks/base/libs/input/
PointerController.cpp 451 spot->sprite->setAlpha(spot->alpha);
489 mLocked.pointerSprite->setLayer(Sprite::BASE_LAYER_POINTER);
530 // Obtain a sprite from the recycled pool.
531 sp<Sprite> sprite; local
533 sprite = mLocked.recycledSprites.top();
536 sprite = mSpriteController->createSprite();
540 Spot* spot = new Spot(id, sprite);
557 spot->sprite->clearIcon();
560 mLocked.recycledSprites.push(spot->sprite);
    [all...]
PointerController.h 64 * Tracks pointer movements and draws the pointer sprite to a surface.
113 sp<Sprite> sprite; member in struct:android::PointerController::Spot
118 inline Spot(uint32_t id, const sp<Sprite>& sprite)
119 : id(id), sprite(sprite), alpha(1.0f), scale(1.0f),
154 sp<Sprite> pointerSprite;
161 Vector<sp<Sprite> > recycledSprites;
SpriteController.cpp 59 sp<Sprite> SpriteController::createSprite() {
73 "Sprite closeTransaction() called but there is no open sprite transaction");
82 void SpriteController::invalidateSpriteLocked(const sp<SpriteImpl>& sprite) {
84 mLocked.invalidatedSprites.push(sprite);
114 // Collect information about sprite updates.
115 // Each sprite update record includes a reference to its associated sprite so we can
126 const sp<SpriteImpl>& sprite = mLocked.invalidatedSprites.itemAt(i); local
128 updates.push(SpriteUpdate(sprite, sprite->getStateLocked()))
    [all...]
SpriteController.h 30 * Transformation matrix for a sprite.
55 * Icon that a sprite displays, including its hotspot.
84 * A sprite is a simple graphical object that is displayed on-screen above other layers.
85 * The basic sprite class is an interface.
86 * The implementation is provided by the sprite controller.
88 class Sprite : public RefBase {
90 Sprite() { }
91 virtual ~Sprite() { }
102 /* Sets the bitmap that is drawn by the sprite.
103 * The sprite retains a copy of the bitmap for subsequent rendering. *
260 sp<SpriteImpl> sprite; member in struct:android::SpriteController::SpriteUpdate
    [all...]
  /external/proguard/lib/
proguardgui.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar 
  /device/asus/fugu/kernel-headers/linux/
psb_drm.h 775 } sprite; member in struct:drm_psb_register_rw_arg
    [all...]
  /device/asus/fugu/original-kernel-headers/linux/
psb_drm.h 675 /*sprite update fields*/
824 } sprite; member in struct:drm_psb_register_rw_arg
    [all...]

Completed in 1791 milliseconds