Home | History | Annotate | Download | only in tests

Lines Matching defs:eglSurface

111     EGLSurface mEglSurface;
162 EGLSurface eglSurface = eglCreateWindowSurface(dpy, myConfig, mANW.get(),
164 EXPECT_NE(EGL_NO_SURFACE, eglSurface);
167 if (eglSurface != EGL_NO_SURFACE) {
168 eglDestroySurface(dpy, eglSurface);
176 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL);
177 EXPECT_NE(EGL_NO_SURFACE, eglSurface);
180 EGLBoolean success = eglMakeCurrent(mEglDisplay, eglSurface, eglSurface, mEglContext);
184 success = eglSwapBuffers(mEglDisplay, eglSurface);
190 success = eglSwapBuffers(mEglDisplay, eglSurface);
197 if (eglSurface != EGL_NO_SURFACE) {
198 eglDestroySurface(mEglDisplay, eglSurface);
499 EGLSurface sur;
747 EGLSurface mEglSurfaces[NUM_SURFACE_TEXTURES];