Searched defs:egl_cache_t (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degl_cache.h33 class EGLAPI egl_cache_t { class in namespace:android
36 // get returns a pointer to the singleton egl_cache_t object. This
38 static egl_cache_t* get();
40 // initialize puts the egl_cache_t into an initialized state, such that it
47 // terminate puts the egl_cache_t back into the uninitialized state. When
70 egl_cache_t();
71 ~egl_cache_t();
74 egl_cache_t(const egl_cache_t&); // not implemented
75 void operator=(const egl_cache_t
[all...]
H A Degl_cache.cpp64 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
69 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
73 // egl_cache_t definition
75 egl_cache_t::egl_cache_t() : function in class:android::egl_cache_t
80 egl_cache_t::~egl_cache_t() {
83 egl_cache_t egl_cache_t::sCache;
85 egl_cache_t* egl_cache_
[all...]

Completed in 26 milliseconds