OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BasicTexture
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
BasicTexture.java
23
//
BasicTexture
is a Texture corresponds to a real GL texture.
24
// The state of a
BasicTexture
indicates whether its data is loaded to GL memory.
25
// If a
BasicTexture
is loaded into GL memory, it has a GL texture id.
26
abstract class
BasicTexture
implements Texture {
29
private static final String TAG = "
BasicTexture
";
50
private static WeakHashMap<
BasicTexture
, Object> sAllTextures
51
= new WeakHashMap<
BasicTexture
, Object>();
54
protected
BasicTexture
(GLCanvas canvas, int id, int state) {
63
protected
BasicTexture
() {
172
sInFinalizer.set(
BasicTexture
.class)
[
all
...]
GLRootView.java
157
BasicTexture
.yieldAllTextures();
262
BasicTexture
.invalidateAllTextures();
Completed in 217 milliseconds