Home
last modified time | relevance | path

Searched refs:eglConfig (Results 1 – 15 of 15) sorted by relevance

/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DEglBase14.java52 private EGLConfig eglConfig; field in EglBase14
76 eglConfig = getEglConfig(eglDisplay, configAttributes); in EglBase14()
77 eglContext = createEglContext(sharedContext, eglDisplay, eglConfig); in EglBase14()
102 eglSurface = EGL14.eglCreateWindowSurface(eglDisplay, eglConfig, surface, surfaceAttribs, 0); in createSurfaceInternal()
120 eglSurface = EGL14.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs, 0); in createPbufferSurface()
160 || eglConfig == null) { in checkIsNotReleased()
175 eglConfig = null; in release()
243 EglBase14.Context sharedContext, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createEglContext() argument
248 EGL14.eglCreateContext(eglDisplay, eglConfig, rootContext, contextAttributes, 0); in createEglContext()
DEglBase10.java52 private EGLConfig eglConfig; field in EglBase10
69 eglConfig = getEglConfig(eglDisplay, configAttributes); in EglBase10()
70 eglContext = createEglContext(sharedContext, eglDisplay, eglConfig); in EglBase10()
157 eglSurface = egl.eglCreateWindowSurface(eglDisplay, eglConfig, nativeWindow, surfaceAttribs); in createSurfaceInternal()
176 eglSurface = egl.eglCreatePbufferSurface(eglDisplay, eglConfig, surfaceAttribs); in createPbufferSurface()
216 || eglConfig == null) { in checkIsNotReleased()
230 eglConfig = null; in release()
288 Context sharedContext, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createEglContext() argument
293 egl.eglCreateContext(eglDisplay, eglConfig, rootContext, contextAttributes); in createEglContext()
/external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
DOGLES2HelloAPI_LinuxX11.cpp255 bool ChooseEGLConfig( EGLDisplay eglDisplay, EGLConfig& eglConfig ) in ChooseEGLConfig() argument
281 …if (!eglChooseConfig(eglDisplay, configurationAttributes, &eglConfig, 1, &configsReturned) || (con… in ChooseEGLConfig()
299 bool CreateEGLSurface( Window nativeWindow, EGLDisplay eglDisplay, EGLConfig eglConfig, EGLSurface&… in CreateEGLSurface() argument
310 …eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, (EGLNativeWindowType)nativeWindow, NULL… in CreateEGLSurface()
329 bool SetupEGLContext( EGLDisplay eglDisplay, EGLConfig eglConfig, EGLSurface eglSurface, EGLContext… in SetupEGLContext() argument
345 eglContext = eglCreateContext(eglDisplay, eglConfig, NULL, contextAttributes); in SetupEGLContext()
757 EGLConfig eglConfig = NULL; in main() local
787 if (!ChooseEGLConfig(eglDisplay, eglConfig)) in main()
793 if (!CreateEGLSurface(nativeWindow, eglDisplay, eglConfig, eglSurface)) in main()
799 if (!SetupEGLContext(eglDisplay, eglConfig, eglSurface, eglContext)) in main()
DOGLES2HelloAPI_Windows.cpp159 EGLConfig eglConfig = 0; in WinMain() local
294 if (!eglChooseConfig(eglDisplay, pi32ConfigAttribs, &eglConfig, 1, &iConfigs) || (iConfigs != 1)) in WinMain()
309 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, eglWindow, NULL); in WinMain()
314 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, NULL, NULL); in WinMain()
329 eglContext = eglCreateContext(eglDisplay, eglConfig, NULL, ai32ContextAttribs); in WinMain()
DOGLES2HelloAPI_OSX.mm150 @Output eglConfig The EGLConfig chosen by the function
155 - (BOOL) chooseEGLConfig:(EGLConfig &)eglConfig fromDisplay:(EGLDisplay)eglDisplay
181 …if (!eglChooseConfig(eglDisplay, configurationAttributes, &eglConfig, 1, &configsReturned) || (con…
194 @Input eglConfig An EGLConfig chosen by the application
199 …Surface:(EGLSurface &)eglSurface fromDisplay:(EGLDisplay)eglDisplay withConfig:(EGLConfig)eglConfig
203 …Using a native window created earlier and a suitable eglConfig, a surface is created that can be u…
212 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, (EGLNativeWindowType)view, NULL);
225 @Input eglConfig An EGLConfig chosen by the application
230 …Context:(EGLContext &)eglContext fromDisplay:(EGLDisplay)eglDisplay withConfig:(EGLConfig)eglConfig
257 eglContext = eglCreateContext(eglDisplay, eglConfig, NULL, contextAttributes);
/external/deqp/framework/egl/
DegluGLUtil.cpp82 EGLContext eglConfig, in createGLContext() argument
198 context = egl.createContext(display, eglConfig, sharedContext, &(attribList[0])); in createGLContext()
204 …es (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig eglConfig, const glu::Rend… in configMatches() argument
212 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_RENDERABLE_TYPE, &renderableType)); in configMatches()
232 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, EGL_SURFACE_TYPE, &surfaceType)); in configMatches()
260 EGLU_CHECK_CALL(egl, getConfigAttrib(display, eglConfig, s_attribs[attribNdx].attrib, &value)); in configMatches()
DegluGLContextFactory.cpp233 …st NativeWindowFactory* windowFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::Rend… in createWindow() argument
242 …nativeWindow = windowFactory->createWindow(nativeDisplay, eglDisplay, eglConfig, &attribList[0], W… in createWindow()
246 …surface = eglu::createWindowSurface(*nativeDisplay, *nativeWindow, eglDisplay, eglConfig, attribLi… in createWindow()
257 …st NativePixmapFactory* pixmapFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::Rend… in createPixmap() argument
265 …nativePixmap = pixmapFactory->createPixmap(nativeDisplay, eglDisplay, eglConfig, &attribList[0], w… in createPixmap()
269 …surface = eglu::createPixmapSurface(*nativeDisplay, *nativePixmap, eglDisplay, eglConfig, attribLi… in createPixmap()
280 EGLSurface createPBuffer (const Library& egl, EGLDisplay display, EGLConfig eglConfig, const glu::R… in createPBuffer() argument
292 surface = egl.createPbufferSurface(display, eglConfig, &(attribList[0])); in createPBuffer()
/external/deqp/modules/egl/
DteglResizeTests.cpp148 const EGLConfig eglConfig = getEGLConfig(egl, eglDisplay, surfaceType()); in init() local
155 eglConfig, in init()
162 eglConfig, in init()
172 eglConfig, in init()
178 eglConfig, in init()
188 m_config = eglConfig; in init()
DteglGLES2SharedRenderingPerfTests.cpp104 …TestContext (EglTestContext& eglTestCtx, EGLDisplay display, EGLConfig eglConfig, const TestConfi…
444 EGLContext createEGLContext (EglTestContext& testCtx, EGLDisplay eglDisplay, EGLConfig eglConfig, E… in createEGLContext() argument
455 EGLContext context = egl.createContext(eglDisplay, eglConfig, share, attribList); in createEGLContext()
461 EGLSurface createEGLSurface (EglTestContext& testCtx, EGLDisplay display, EGLConfig eglConfig, cons… in createEGLSurface() argument
471 EGLSurface surface = egl.createPbufferSurface(display, eglConfig, attribList); in createEGLSurface()
479 TestContext::TestContext (EglTestContext& testCtx, EGLDisplay eglDisplay, EGLConfig eglConfig, cons… in TestContext() argument
505 …m_eglContext = createEGLContext(m_testCtx, m_eglDisplay, eglConfig, (share && parent ? parent->get… in TestContext()
506 m_eglSurface = createEGLSurface(m_testCtx, m_eglDisplay, eglConfig, config); in TestContext()
856 EGLConfig eglConfig = eglu::chooseSingleConfig(egl, m_display, attribList); in init() local
860 …m_contexts.push_back(new TestContext(m_eglTestCtx, m_display, eglConfig, m_config, m_config.shared… in init()
DteglNegativePartialUpdateTests.cpp118 …t Library& egl, EGLDisplay eglDisplay, EGLSurface eglSurface, EGLConfig eglConfig, const EGLint* a… in initAndMakeCurrentEGLContext() argument
123 eglContext = egl.createContext(eglDisplay, eglConfig, EGL_NO_CONTEXT, attribList); in initAndMakeCurrentEGLContext()
DteglNegativeApiTests.cpp158 EGLConfig eglConfig; in init()
159 expectFalse(getConfig(&eglConfig, FilterList() << s_renderAPIFilters[ndx])); in init()
/external/webrtc/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
DViEAndroidGLES20.java88 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { in createContext() argument
92 EGLContext context = egl.eglCreateContext(display, eglConfig, in createContext()
/external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java203 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext() argument
205 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
/external/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java203 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext() argument
205 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java701 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); in createContext() argument