Home | History | Annotate | Download | only in media

Lines Matching refs:texture

85         StringTexture texture = null;
87 texture = textureTable.get(string);
89 if (texture == null) {
90 texture = new StringTexture(string, config);
92 textureTable.put(string, texture);
95 return texture;
102 StringTexture texture = mTitleImage;
104 if (texture == null && title != null && !(title.equals(mTitle))) {
105 texture = getTextureForString(title, textureTable, ((mSetRef.mId != Shared.INVALID && mSetRef.mId != 0) ? CAPTION_STYLE
107 mTitleImage = texture;
110 return texture;