Home | History | Annotate | Download | only in libOpenglRender

Lines Matching full:dpy

71     EGLDisplay dpy = fb->getDisplay();
73 if (dpy == EGL_NO_DISPLAY) {
82 if (!s_egl.eglGetConfigs(dpy, NULL, 0, &nConfigs)) {
87 s_egl.eglGetConfigs(dpy, configs, nConfigs, &nConfigs);
103 s_egl.eglGetConfigAttrib(dpy, configs[i],
111 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_RED_SIZE, &redSize);
112 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_BLUE_SIZE, &blueSize);
113 s_egl.eglGetConfigAttrib(dpy, configs[i], EGL_GREEN_SIZE, &greenSize);
116 s_fbConfigs[j++] = new FBConfig(dpy, configs[i]);
150 EGLDisplay dpy = fb->getDisplay();
153 if (dpy == EGL_NO_DISPLAY) {
161 if (!s_egl.eglGetConfigs(dpy, NULL, 0, &nConfigs)) {
206 s_egl.eglChooseConfig(dpy, newAttribs, matchedConfigs, nConfigs, &nConfigs);
217 s_egl.eglGetConfigAttrib(dpy, matchedConfigs[matchedIdx], EGL_CONFIG_ID, &sCfgId);