Home
last modified time | relevance | path

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

/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
DGLClientState.cpp310 TextureRec* texrec = NULL; in bindTexture() local
313 texrec = (TextureRec*)bsearch(&texture, m_tex.textures, in bindTexture()
316 if (!texrec) { in bindTexture()
317 if (!(texrec = addTextureRec(texture, target))) { in bindTexture()
322 if (target != texrec->target) { in bindTexture()
400 TextureRec* texrec; in deleteTextures() local
402 texrec = (TextureRec*)bsearch(texture, m_tex.textures, in deleteTextures()
404 if (texrec) { in deleteTextures()
406 memmove(texrec, texrec + 1, in deleteTextures()
407 (end - texrec - 1) * sizeof(TextureRec)); in deleteTextures()