Lines Matching refs:EGLTextureObject
25 EGLTextureObject::EGLTextureObject() in EGLTextureObject() function in android::EGLTextureObject
31 EGLTextureObject::~EGLTextureObject() in ~EGLTextureObject()
41 void EGLTextureObject::init() in init()
59 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old) in copyParameters()
70 status_t EGLTextureObject::allocateMipmaps() in allocateMipmaps()
92 void EGLTextureObject::freeMipmaps() in freeMipmaps()
106 const GGLSurface& EGLTextureObject::mip(int lod) const in mip()
114 GGLSurface& EGLTextureObject::editMip(int lod) in editMip()
119 status_t EGLTextureObject::setSurface(GGLSurface const* s) in setSurface()
146 status_t EGLTextureObject::setImage(ANativeWindowBuffer* native_buffer) in setImage()
160 status_t EGLTextureObject::reallocate( in reallocate()
252 sp<EGLTextureObject> EGLSurfaceManager::createTexture(GLuint name) in createTexture()
254 sp<EGLTextureObject> result; in createTexture()
260 result = new EGLTextureObject(); in createTexture()
269 sp<EGLTextureObject> EGLSurfaceManager::removeTexture(GLuint name) in removeTexture()
274 sp<EGLTextureObject> result(mTextures.valueAt(index)); in removeTexture()
281 sp<EGLTextureObject> EGLSurfaceManager::replaceTexture(GLuint name) in replaceTexture()
283 sp<EGLTextureObject> tex; in replaceTexture()
287 const sp<EGLTextureObject>& old = mTextures.valueAt(index); in replaceTexture()
294 tex = new EGLTextureObject(); in replaceTexture()
315 sp<EGLTextureObject> EGLSurfaceManager::texture(GLuint name) in texture()