Home
last modified time | relevance | path

Searched refs:FadeInTexture (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DAlbumSlotRenderer.java24 import com.android.gallery3d.glrenderer.FadeInTexture;
117 content = new FadeInTexture(mPlaceholderColor, entry.bitmapTexture); in renderSlot()
121 if ((content instanceof FadeInTexture) && in renderSlot()
122 ((FadeInTexture) content).isAnimating()) { in renderSlot()
DAlbumSetSlotRenderer.java25 import com.android.gallery3d.glrenderer.FadeInTexture;
178 content = new FadeInTexture(mPlaceholderColor, entry.bitmapTexture); in renderContent()
182 if ((content instanceof FadeInTexture) && in renderContent()
183 ((FadeInTexture) content).isAnimating()) { in renderContent()
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DFadeInTexture.java22 public class FadeInTexture extends FadeTexture implements Texture { class
29 public FadeInTexture(int color, TiledTexture texture) { in FadeInTexture() method in FadeInTexture