Searched refs:eglCreateWindowSurface (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/angle/util/
H A DEGLWindow.cpp136 mSurface = eglCreateWindowSurface(mDisplay, mConfig, osWindow->getNativeWindow(), surfaceAttributes);
140 mSurface = eglCreateWindowSurface(mDisplay, mConfig, NULL, NULL);
/external/deqp/framework/egl/
H A DegluApiPrototypes.inl13 EGLSurface eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint* attrib_list);
H A DtcuEgl.cpp169 m_surface = eglCreateWindowSurface(display.getEGLDisplay(), config, nativeWindow, attribList);
H A DegluCallLogWrapper.inl94 EGLSurface CallLogWrapper::eglCreateWindowSurface (EGLDisplay param0, EGLConfig param1, EGLNativeWindowType param2, const EGLint* param3)
97 m_log << TestLog::Message << "eglCreateWindowSurface(" << getEGLDisplayStr(param0) << ", " << toHex(param1) << ", " << toHex(param2) << ", " << getSurfaceAttribListStr(param3) << ");" << TestLog::EndMessage;
98 EGLSurface returnValue = ::eglCreateWindowSurface(param0, param1, param2, param3);
H A DegluUtil.cpp211 //! Create EGL window surface using eglCreateWindowSurface() or eglCreatePlatformWindowSurfaceEXT()
244 surface = eglCreateWindowSurface(display, config, window.getLegacyNative(), &legacyAttribs[0]);
245 EGLU_CHECK_MSG("eglCreateWindowSurface()");
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
/external/deqp/modules/egl/
H A DteglNegativeApiTests.cpp70 // * eglCreateWindowSurface()
619 TEGL_ADD_API_CASE(create_window_surface, "eglCreateWindowSurface() negative tests",
626 expectNoSurface(eglCreateWindowSurface(EGL_NO_DISPLAY, DE_NULL, DE_NULL, s_emptyAttribList));
629 expectNoSurface(eglCreateWindowSurface((EGLDisplay)-1, DE_NULL, DE_NULL, s_emptyAttribList));
636 expectNoSurface(eglCreateWindowSurface(display, (EGLConfig)-1, DE_NULL, s_emptyAttribList));
647 expectNoSurface(eglCreateWindowSurface(display, windowConfig, DE_NULL, s_emptyAttribList));
650 expectNoSurface(eglCreateWindowSurface(display, windowConfig, (EGLNativeWindowType)-1, s_emptyAttribList));
H A DteglCreateSurfaceTests.cpp72 surface = eglCreateWindowSurface(display, config, window.getLegacyNative(), DE_NULL);
73 TCU_CHECK_EGL_MSG("eglCreateWindowSurface() failed");
131 throw tcu::NotSupportedError("Native window doesn't support legacy eglCreateWindowSurface()", "", __FILE__, __LINE__);
/external/chromium_org/ppapi/lib/gl/include/EGL/
H A Degl.h265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
/external/chromium_org/third_party/khronos/EGL/
H A Degl.h265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
/external/chromium_org/third_party/mesa/src/include/EGL/
H A Degl.h265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
/external/mesa3d/include/EGL/
H A Degl.h265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
/external/chromium_org/gpu/gles2_conform_support/egl/
H A Degl.cc199 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, function
/external/chromium_org/third_party/angle/include/EGL/
H A Degl.h126 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list);
/external/chromium_org/third_party/skia/src/views/win/
H A DSkOSWindow_win.cpp453 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
/external/chromium_org/ui/gl/
H A Dgl_surface_egl.cc333 surface_ = eglCreateWindowSurface(
337 LOG(ERROR) << "eglCreateWindowSurface failed with error "
/external/skia/src/views/win/
H A DSkOSWindow_win.cpp452 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
/external/robolectric/lib/main/
H A Dopengl-api-gl1.1-android-2.1_r1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/microedition/ javax/microedition/khronos/ javax/microedition/khronos/opengles/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglapi.c521 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, function
878 { "eglCreateWindowSurface", (_EGLProc) eglCreateWindowSurface },
/external/mesa3d/src/egl/main/
H A Deglapi.c521 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, function
878 { "eglCreateWindowSurface", (_EGLProc) eglCreateWindowSurface },
/external/chromium_org/third_party/angle/src/libEGL/
H A DlibEGL.cpp315 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list) function
/external/replicaisland/src/com/replica/replicaisland/
H A DGLSurfaceView.java723 * An interface for customizing the eglCreateWindowSurface and eglDestroySurface calls.
738 return egl.eglCreateWindowSurface(display, config, nativeWindow, null);
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 501 milliseconds

12