Lines Matching refs:eglImage
86 void EGLImageWrapper::DeleteEGLImageCallback::operator()(int& buffInt, EGLImageBuffer*& eglImage) in operator ()() argument
89 if (eglImage != 0) { in operator ()()
90 delete eglImage; in operator ()()
185 EGLImageBuffer* eglImage = nullptr; in wrap() local
186 eglImage = eglImageBufferCache->get(ion_cookie); in wrap()
187 if (eglImage == 0) { in wrap()
188 eglImage = L_wrap(src); in wrap()
189 eglImageBufferCache->put(ion_cookie, eglImage); in wrap()
195 EGLImageBuffer* eglImage = nullptr; in wrap() local
199 eglImage = eglImageBufferCache->get(it->second); in wrap()
201 eglImage = L_wrap(src); in wrap()
203 eglImageBufferCache->put(buffInt, eglImage); in wrap()
211 return eglImage; in wrap()