Searched refs:egl_display (Results 1 – 4 of 4) sorted by relevance
/hardware/qcom/sm7250/display/composer/ |
D | gl_color_convert_impl.cpp | 85 ctx_.egl_display = eglGetDisplay(EGL_DEFAULT_DISPLAY); in CreateContext() 89 EGL(eglInitialize(ctx_.egl_display, nullptr, nullptr)); in CreateContext() 102 EGL(eglChooseConfig(ctx_.egl_display, eglConfigAttribList, &eglConfig, 1, &numConfig)); in CreateContext() 114 EGL(eglChooseConfig(ctx_.egl_display, eglConfigAttribList, &eglConfig, 1, &numConfig)); in CreateContext() 126 ctx_.egl_context = eglCreateContext(ctx_.egl_display, eglConfig, NULL, egl_contextAttribList); in CreateContext() 134 ctx_.egl_surface = eglCreatePbufferSurface(ctx_.egl_display, eglConfig, egl_surfaceAttribList); in CreateContext()
|
D | gl_layer_stitch_impl.cpp | 82 ctx_.egl_display = eglGetDisplay(EGL_DEFAULT_DISPLAY); in CreateContext() 86 EGL(eglInitialize(ctx_.egl_display, nullptr, nullptr)); in CreateContext() 98 EGL(eglChooseConfig(ctx_.egl_display, eglConfigAttribList, &eglConfig, 1, &numConfig)); in CreateContext() 109 ctx_.egl_context = eglCreateContext(ctx_.egl_display, eglConfig, NULL, egl_contextAttribList); in CreateContext() 117 ctx_.egl_surface = eglCreatePbufferSurface(ctx_.egl_display, eglConfig, egl_surfaceAttribList); in CreateContext()
|
D | gl_common.cpp | 80 EGL(eglMakeCurrent(ctx->egl_display, ctx->egl_surface, ctx->egl_surface, ctx->egl_context)); in MakeCurrent() 169 EGL(eglMakeCurrent(ctx->egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)); in DestroyContext() 170 EGL(eglDestroySurface(ctx->egl_display, ctx->egl_surface)); in DestroyContext() 171 EGL(eglDestroyContext(ctx->egl_display, ctx->egl_context)); in DestroyContext() 172 EGL(eglTerminate(ctx->egl_display)); in DestroyContext()
|
D | gl_common.h | 51 EGLDisplay egl_display = EGL_NO_DISPLAY; member
|