HomeSort by relevance Sort by last modified time
    Searched refs:sEglDisplay (Results 1 - 4 of 4) sorted by null

  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 68 static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
125 sEglDisplay = eglGetDisplay(sDisplay);
126 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion);
128 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
130 success = eglChooseConfig(sEglDisplay, configAttribs,
134 sEglContext = eglCreateContext(sEglDisplay, sEglConfig, NULL, NULL);
146 eglGetConfigAttrib(sEglDisplay, sEglConfig,
170 sEglSurface = eglCreateWindowSurface(sEglDisplay, sEglConfig,
176 success = eglMakeCurrent(sEglDisplay, sEglSurface,
188 eglMakeCurrent(sEglDisplay, NULL, NULL, NULL)
    [all...]
app-win32.c 48 static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
116 sEglDisplay = eglGetDisplay(dc);
118 sEglDisplay = eglGetDisplay(EGL_DEFAULT_DISPLAY);
120 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion);
122 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
124 success = eglChooseConfig(sEglDisplay, configAttribs,
128 sEglSurface = eglCreateWindowSurface(sEglDisplay, sEglConfig,
135 sEglContext = eglCreateContext(sEglDisplay, sEglConfig, NULL, NULL);
140 success = eglMakeCurrent(sEglDisplay, sEglSurface,
152 eglMakeCurrent(sEglDisplay, NULL, NULL, NULL)
    [all...]
  /frameworks/native/opengl/tests/angeles/
app-linux.cpp 70 static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
165 sEglDisplay = dpy;
180 eglMakeCurrent(sEglDisplay, NULL, NULL, NULL);
181 eglDestroyContext(sEglDisplay, sEglContext);
182 eglDestroySurface(sEglDisplay, sEglSurface);
183 eglTerminate(sEglDisplay);
217 eglSwapBuffers(sEglDisplay, sEglSurface);
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 766 static EGLDisplay sEglDisplay;
    [all...]

Completed in 117 milliseconds