Lines Matching defs:display
411 EGLDisplay display = SkANGLEGLContext::GetD3DEGLDisplay(GetDC(hWnd));
413 if (EGL_NO_DISPLAY == display) {
414 SkDebugf("Could not create ANGLE egl display!\n");
420 if (!eglInitialize(display, &majorVersion, &minorVersion)) {
425 if (!eglGetConfigs(display, NULL, 0, &numConfigs)) {
444 if (eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
450 if (!eglChooseConfig(display, configAttribList, eglConfig, 1, &numConfigs)) {
456 EGLSurface surface = eglCreateWindowSurface(display, *eglConfig,
464 EGLContext context = eglCreateContext(display, *eglConfig,
472 if (!eglMakeCurrent(display, surface, surface, context)) {
476 *eglDisplay = display;