HomeSort by relevance Sort by last modified time
    Searched defs:egl_cache_t (Results 1 - 2 of 2) sorted by null

  /frameworks/native/opengl/libs/EGL/
egl_cache.h 33 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&); // not implemente
    [all...]
egl_cache.cpp 64 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_t::get()
    [all...]

Completed in 244 milliseconds