Home
last modified time | relevance | path

Searched refs:m_nextEglImageId (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglDisplay.cpp522 ++m_nextEglImageId; in addImageKHR()
523 } while(m_nextEglImageId == 0 in addImageKHR()
524 || android::base::contains(m_eglImages, m_nextEglImageId)); in addImageKHR()
525 img->imageId = m_nextEglImageId; in addImageKHR()
526 m_eglImages[m_nextEglImageId] = img; in addImageKHR()
527 return reinterpret_cast<EGLImageKHR>(m_nextEglImageId); in addImageKHR()
DEglDisplay.h174 unsigned int m_nextEglImageId = 0; variable