Home | History | Annotate | Download | only in android

Lines Matching refs:fDisplay

27     , fDisplay(EGL_NO_DISPLAY)
36 if (fDisplay) {
37 eglMakeCurrent(fDisplay, 0, 0, 0);
40 eglDestroyContext(fDisplay, fContext);
45 eglDestroySurface(fDisplay, fSurface);
50 fDisplay = EGL_NO_DISPLAY;
55 fDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
59 eglInitialize(fDisplay, &majorVersion, &minorVersion);
73 eglChooseConfig(fDisplay, configAttribs, &surfaceConfig, 1, &numConfigs);
79 fContext = eglCreateContext(fDisplay, surfaceConfig, NULL, contextAttribs);
87 fSurface = eglCreatePbufferSurface(fDisplay, surfaceConfig, surfaceAttribs);
89 eglMakeCurrent(fDisplay, fSurface, fSurface, fContext);
101 if (!eglMakeCurrent(fDisplay, fSurface, fSurface, fContext)) {