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