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

  /external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.h 99 EGLSurface eglSurface() const { return m_eglSurface; }
151 EGLSurface m_eglSurface;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 91 EGLSurface eglSurface = eglCreateWindowSurface(eglDisplay,
99 return new RendererSurface(eglDisplay, window, eglSurface, eglConfig);
RendererSurface.h 30 EGLSurface eglSurface() { return m_eglSurface; }
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
50 EGLSurface m_eglSurface;
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 104 // Create a EGLSurface
110 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
113 ASSERT_NE(EGL_NO_SURFACE, eglSurface) ;
115 // do not destroy eglSurface
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
libEGL.cpp 318 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
373 EGLSurface surface = (EGLSurface)display->createWindowSurface(window, config);
385 EGLSurface __stdcall eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
411 EGLSurface __stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
437 EGLBoolean __stdcall eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
439 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p)", dpy, surface);
467 EGLBoolean __stdcall eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value)
469 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLint attribute = %d, EGLint *value = 0x%0.8p)",
486 egl::Surface *eglSurface = (egl::Surface*)surface
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 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)
    [all...]
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 19 EGLSurface eglSurface;
242 if ( (eglSurface = eglCreateWindowSurface(eglDisplay, myConfig,
255 if ( eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext) != EGL_TRUE )
263 eglQuerySurface(eglDisplay, eglSurface, EGL_WIDTH, &w);
265 eglQuerySurface(eglDisplay, eglSurface, EGL_HEIGHT, &h);
286 eglDestroySurface( eglDisplay, eglSurface );
363 eglSwapBuffers(eglDisplay, eglSurface);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 21 EGLSurface eglSurface;
146 if ( (eglSurface = eglCreateWindowSurface(eglDisplay, myConfig,
159 if ( eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext) != EGL_TRUE )
175 eglDestroySurface( eglDisplay, eglSurface );
260 eglSwapBuffers(eglDisplay, eglSurface);
263 eglSwapBuffers(eglDisplay, eglSurface);
272 eglSwapBuffers(eglDisplay, eglSurface);
  /frameworks/native/services/surfaceflinger/
SurfaceFlinger.cpp 464 ALOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, mEGLConfig);
    [all...]

Completed in 329 milliseconds