Home | History | Annotate | Download | only in angeles

Lines Matching refs:dpy

136     EGLDisplay dpy;
140 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
141 eglInitialize(dpy, &majorVersion, &minorVersion);
144 dpy, configAttribs, window, &config);
150 surface = eglCreateWindowSurface(dpy, config, window, NULL);
155 context = eglCreateContext(dpy, config, NULL, NULL);
159 eglMakeCurrent(dpy, surface, surface, context);
162 eglQuerySurface(dpy, surface, EGL_WIDTH, &sWindowWidth);
163 eglQuerySurface(dpy, surface, EGL_HEIGHT, &sWindowHeight);
165 sEglDisplay = dpy;