Searched defs:eglSurface (Results 1 - 13 of 13) sorted by relevance

/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DEglBase10.java54 private EGLSurface eglSurface = EGL10.EGL_NO_SURFACE; field in class:EglBase10
153 if (eglSurface != EGL10.EGL_NO_SURFACE) {
157 eglSurface = egl.eglCreateWindowSurface(eglDisplay, eglConfig, nativeWindow, surfaceAttribs);
158 if (eglSurface == EGL10.EGL_NO_SURFACE) {
172 if (eglSurface != EGL10.EGL_NO_SURFACE) {
176 eglSurface = egl.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs);
177 if (eglSurface == EGL10.EGL_NO_SURFACE) {
189 return eglSurface != EGL10.EGL_NO_SURFACE;
195 egl.eglQuerySurface(eglDisplay, eglSurface, EGL10.EGL_WIDTH, widthArray);
202 egl.eglQuerySurface(eglDisplay, eglSurface, EGL1
[all...]
H A DEglBase14.java54 private EGLSurface eglSurface = EGL14.EGL_NO_SURFACE; field in class:EglBase14
98 if (eglSurface != EGL14.EGL_NO_SURFACE) {
102 eglSurface = EGL14.eglCreateWindowSurface(eglDisplay, eglConfig, surface, surfaceAttribs, 0);
103 if (eglSurface == EGL14.EGL_NO_SURFACE) {
116 if (eglSurface != EGL14.EGL_NO_SURFACE) {
120 eglSurface = EGL14.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs, 0);
121 if (eglSurface == EGL14.EGL_NO_SURFACE) {
133 return eglSurface != EGL14.EGL_NO_SURFACE;
139 EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL14.EGL_WIDTH, widthArray, 0);
146 EGL14.eglQuerySurface(eglDisplay, eglSurface, EGL1
[all...]
/external/deqp/modules/egl/
H A DteglNegativePartialUpdateTests.cpp118 EGLContext initAndMakeCurrentEGLContext (const Library& egl, EGLDisplay eglDisplay, EGLSurface eglSurface, EGLConfig eglConfig, const EGLint* attribList) argument
125 TCU_CHECK(eglSurface != EGL_NO_SURFACE);
126 egl.makeCurrent(eglDisplay, eglSurface, eglSurface, eglContext);
H A DteglRenderCase.cpp138 EGLSurface eglSurface = createWindowSurface(nativeDisplay, *window, display, config, DE_NULL); local
139 eglu::UniqueSurface surface (egl, display, eglSurface);
162 EGLSurface eglSurface = createPixmapSurface(nativeDisplay, *pixmap, display, config, DE_NULL); local
163 eglu::UniqueSurface surface (egl, display, eglSurface);
H A DteglResizeTests.cpp175 const EGLSurface eglSurface = eglu::createWindowSurface(nativeDisplay, local
180 MovePtr<UniqueSurface> surface (new UniqueSurface(egl, eglDisplay, eglSurface));
330 EGLSurface eglSurface,
336 IVec2 eglSize = eglu::getSurfaceSize(egl, eglDisplay, eglSurface);
328 checkSurfaceSize(const Library& egl, EGLDisplay eglDisplay, EGLSurface eglSurface, const NativeWindow& nativeWindow, IVec2 reqSize, ResultCollector& status) argument
H A DteglGLES2SharingThreadedTests.cpp219 EGLSurface eglSurface; member in class:deqp::egl::GLES2ThreadTest::EGLThread
227 , eglSurface (EGL_NO_SURFACE)
241 egl.destroySurface(runtimeContext->display, eglSurface);
242 eglSurface = EGL_NO_SURFACE;
708 thread.eglSurface = m_surface->surface;
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
H A DOGLES2HelloAPI_LinuxX11.cpp295 @Output eglSurface The EGLSurface created from the native window.
299 bool CreateEGLSurface( Window nativeWindow, EGLDisplay eglDisplay, EGLConfig eglConfig, EGLSurface& eglSurface) argument
310 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, (EGLNativeWindowType)nativeWindow, NULL);
323 @Input eglSurface The EGLSurface created from the native window.
329 bool SetupEGLContext( EGLDisplay eglDisplay, EGLConfig eglConfig, EGLSurface eglSurface, EGLContext& eglContext ) argument
366 eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext);
582 @Input eglSurface The EGLSurface created from the native window.
587 bool RenderScene( GLuint shaderProgram, EGLDisplay eglDisplay, EGLSurface eglSurface, Display* nativeDisplay ) argument
656 if (!eglSwapBuffers(eglDisplay, eglSurface) )
758 EGLSurface eglSurface = NULL; local
[all...]
H A DOGLES2HelloAPI_Windows.cpp130 EGLSurface eglSurface = 0; local
279 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, eglWindow, NULL);
281 if(eglSurface == EGL_NO_SURFACE)
284 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, NULL, NULL);
315 eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext);
482 eglSwapBuffers(eglDisplay, eglSurface);
/external/swiftshader/src/OpenGL/libEGL/
H A DlibEGL.cpp351 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); local
353 if(!validateSurface(display, eglSurface))
374 egl::Surface *eglSurface = (egl::Surface*)surface; local
376 if(!validateSurface(display, eglSurface))
395 *value = eglSurface->getConfigID();
398 *value = eglSurface->getHeight();
404 if(eglSurface->isPBufferSurface()) // For a window or pixmap surface, the contents of *value are not modified.
406 *value = eglSurface->getLargestPBuffer();
419 *value = eglSurface->getPixelAspectRatio();
422 *value = eglSurface
510 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); local
545 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); local
587 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); local
902 egl::Surface *eglSurface = (egl::Surface*)surface; local
924 egl::Surface *eglSurface = static_cast<egl::Surface*>(surface); local
[all...]
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp458 EGLSurface* eglSurface,
544 *eglSurface = surface;
454 create_ANGLE(EGLNativeWindowType hWnd, int msaaSampleCount, EGLDisplay* eglDisplay, EGLContext* eglContext, EGLSurface* eglSurface, EGLConfig* eglConfig) argument
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 556 milliseconds