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

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java25 // BasicTexture is a Texture corresponds to a real GL texture.
26 // The state of a BasicTexture indicates whether its data is loaded to GL memory.
27 // If a BasicTexture is loaded into GL memory, it has a GL texture id.
28 public abstract class BasicTexture implements Texture { class in inherits:Texture
31 private static final String TAG = "BasicTexture";
53 private static WeakHashMap<BasicTexture, Object> sAllTextures
54 = new WeakHashMap<BasicTexture, Object>();
57 protected BasicTexture(GLCanvas canvas, int id, int state) { method in class:BasicTexture
66 protected BasicTexture() { method in class:BasicTexture
184 sInFinalizer.set(BasicTexture
[all...]

Completed in 557 milliseconds