Home | History | Annotate | Download | only in libagl

Lines Matching defs:EGLTextureObject

27 EGLTextureObject::EGLTextureObject()
33 EGLTextureObject::~EGLTextureObject()
43 void EGLTextureObject::init()
61 void EGLTextureObject::copyParameters(const sp<EGLTextureObject>& old)
72 status_t EGLTextureObject::allocateMipmaps()
94 void EGLTextureObject::freeMipmaps()
108 const GGLSurface& EGLTextureObject::mip(int lod) const
116 GGLSurface& EGLTextureObject::editMip(int lod)
121 status_t EGLTextureObject::setSurface(GGLSurface const* s)
148 status_t EGLTextureObject::setImage(android_native_buffer_t* native_buffer)
162 status_t EGLTextureObject::reallocate(
254 sp<EGLTextureObject> EGLSurfaceManager::createTexture(GLuint name)
256 sp<EGLTextureObject> result;
262 result = new EGLTextureObject();
271 sp<EGLTextureObject> EGLSurfaceManager::removeTexture(GLuint name)
276 sp<EGLTextureObject> result(mTextures.valueAt(index));
283 sp<EGLTextureObject> EGLSurfaceManager::replaceTexture(GLuint name)
285 sp<EGLTextureObject> tex;
289 const sp<EGLTextureObject>& old = mTextures.valueAt(index);
296 tex = new EGLTextureObject();
317 sp<EGLTextureObject> EGLSurfaceManager::texture(GLuint name)