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

  /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 108 // Create a EGLSurface
114 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
117 ASSERT_NE(EGL_NO_SURFACE, eglSurface) ;
119 // do not destroy eglSurface
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
esUtil.h 84 EGLSurface eglSurface;
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
libEGL.cpp 297 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
326 EGLSurface __stdcall eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
348 EGLSurface __stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
372 EGLBoolean __stdcall eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
374 EVENT("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p)", dpy, surface);
379 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface);
381 if (!validateSurface(display, eglSurface))
401 EGLBoolean __stdcall eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value)
403 EVENT("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLint attribute = %d, EGLint *value = 0x%0.8p)",
409 egl::Surface *eglSurface = (egl::Surface*)surface
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 115 EGLSurface mEglSurface;
166 EGLSurface eglSurface = eglCreateWindowSurface(dpy, myConfig, mANW.get(),
168 EXPECT_NE(EGL_NO_SURFACE, eglSurface);
171 if (eglSurface != EGL_NO_SURFACE) {
172 eglDestroySurface(dpy, eglSurface);
180 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL);
181 EXPECT_NE(EGL_NO_SURFACE, eglSurface);
184 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/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 36 import javax.microedition.khronos.egl.EGLSurface;
47 private static HashMap<Object, EGLSurface> mSurfaceSources = new HashMap<Object, EGLSurface>();
67 private EGLSurface mSurface;
76 private static HashMap<EGLContext, EGLSurface> mDisplaySurfaces
77 = new HashMap<EGLContext, EGLSurface>();
91 EGLSurface eglSurface = createSurface(egl, eglDisplay, width, height);
92 RenderTarget result = new RenderTarget(eglDisplay, eglContext, eglSurface, 0, true, true);
93 result.addReferenceTo(eglSurface);
    [all...]

Completed in 197 milliseconds