Home | History | Annotate | Download | only in openvg

Lines Matching refs:eglSurface

55     EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
66 displayManager->m_platformSurfaces.set(platformSurface->eglSurface(), platformSurface);
72 displayManager->m_platformSurfaces.remove(platformSurface->eglSurface());
122 HashMap<EGLSurface, EGLint>::const_iterator end = m_surfaceConfigIds.end();
123 for (HashMap<EGLSurface, EGLint>::const_iterator it = m_surfaceConfigIds.begin(); it != end; ++it)
224 EGLSurface surface = createPbufferSurface(IntSize(1, 1), config);
239 EGLSurface EGLDisplayOpenVG::createPbufferSurface(const IntSize& size, const EGLConfig& config, EGLint* errorCode)
246 EGLSurface surface = eglCreatePbufferSurface(m_display, config, attribList);
266 EGLSurface EGLDisplayOpenVG::surfaceForWindow(EGLNativeWindowType wId, const EGLConfig& config)
271 EGLSurface surface = eglCreateWindowSurface(m_display, config, wId, 0);
284 bool EGLDisplayOpenVG::surfacesCompatible(const EGLSurface& surface, const EGLSurface& otherSurface)
296 void EGLDisplayOpenVG::destroySurface(const EGLSurface& surface)
313 HashMap<EGLSurface, EGLint>::iterator end = m_surfaceConfigIds.end();
316 for (HashMap<EGLSurface, EGLint>::iterator it = m_surfaceConfigIds.begin(); it != end; ++it) {
331 HashMap<EGLNativeWindowType, EGLSurface>::iterator end = m_windowSurfaces.end();
332 for (HashMap<EGLNativeWindowType, EGLSurface>::iterator it = m_windowSurfaces.begin(); it != end; ++it) {
343 EGLContext EGLDisplayOpenVG::contextForSurface(const EGLSurface& surface)
377 EGLSurface currentReadSurface = eglGetCurrentSurface(EGL_READ);
378 EGLSurface currentDrawSurface = eglGetCurrentSurface(EGL_DRAW);