OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:egl_display_
(Results
1 - 2
of
2
) sorted by null
/external/drm_hwcomposer/
glworker.cpp
446
:
egl_display_
(EGL_NO_DISPLAY), egl_ctx_(EGL_NO_CONTEXT) {
477
egl_display_
= eglGetDisplay(EGL_DEFAULT_DISPLAY);
478
if (
egl_display_
== EGL_NO_DISPLAY) {
483
if (!eglInitialize(
egl_display_
, NULL, NULL)) {
488
egl_extensions = eglQueryString(
egl_display_
, EGL_EXTENSIONS);
501
if (!eglChooseConfig(
egl_display_
, config_attribs, &egl_config, 1,
508
eglCreateContext(
egl_display_
, egl_config,
516
if (!eglMakeCurrent(
egl_display_
, EGL_NO_SURFACE, EGL_NO_SURFACE, egl_ctx_)) {
547
if (
egl_display_
!= EGL_NO_DISPLAY && egl_ctx_ != EGL_NO_CONTEXT)
548
if (eglDestroyContext(
egl_display_
, egl_ctx_) == EGL_FALSE
[
all
...]
glworker.h
73
EGLDisplay
egl_display_
;
member in class:android::GLWorkerCompositor
Completed in 61 milliseconds