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

  /frameworks/base/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);
  /development/tools/emulator/opengl/tests/ut_renderer/
RendererSurface.h 30 EGLSurface eglSurface() { return m_eglSurface; }
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
50 EGLSurface m_eglSurface;
RendererSurface.cpp 91 EGLSurface eglSurface = eglCreateWindowSurface(eglDisplay,
99 return new RendererSurface(eglDisplay, window, eglSurface, eglConfig);
Renderer.cpp 163 EGLSurface draw = EGL_NO_SURFACE;
164 EGLSurface read = EGL_NO_SURFACE;
166 i = m_surfaces.find(drawSurface); if (i != m_surfaces.end()) draw = i->second->eglSurface();
167 i = m_surfaces.find(readSurface); if (i != m_surfaces.end()) read = i->second->eglSurface();
182 return eglSwapBuffers(m_dpy, s->second->eglSurface());
  /frameworks/base/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);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.h 99 EGLSurface eglSurface() const { return m_eglSurface; }
151 EGLSurface m_eglSurface;
EGLDisplayOpenVG.cpp 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::createPbufferFromClientBuffer(
269 EGLSurface surface = eglCreatePbufferFromClientBuffer(m_display
    [all...]
  /development/tools/emulator/opengl/system/egl/
egl.cpp 610 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
638 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
696 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
706 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface eglSurface)
709 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE);
711 egl_surface_t* surface(static_cast<egl_surface_t*>(eglSurface));
717 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface eglSurface, EGLint attribute, EGLint *value)
720 VALIDATE_SURFACE_RETURN(eglSurface, EGL_FALSE)
    [all...]
  /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...]
  /external/mesa3d/test/
egl.cpp 155 EGLSurface read;
156 EGLSurface draw;
217 LOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
    [all...]
  /frameworks/base/opengl/libagl/
egl.cpp 53 EGLBoolean EGLAPI eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw,
127 EGLSurface read;
128 EGLSurface draw;
187 LOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
    [all...]
  /frameworks/base/libs/gui/tests/
SurfaceTextureClient_test.cpp 95 EGLSurface mEglSurface;
145 EGLSurface eglSurface = eglCreateWindowSurface(dpy, myConfig, mANW.get(),
147 EXPECT_NE(EGL_NO_SURFACE, eglSurface);
432 EGLSurface sur;
680 EGLSurface mEglSurfaces[NUM_SURFACE_TEXTURES];

Completed in 260 milliseconds