HomeSort by relevance Sort by last modified time
    Searched defs:eglConfig (Results 1 - 5 of 5) sorted by null

  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoAndroidHarness.java 21 String eglConfig = bundle.getString("EGLCONFIG");
22 if (eglConfig.equals("Best"))
26 else if (eglConfig.equals("Legacy"))
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp 25 EGLConfig RendererSurface::getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config)
27 EGLConfig eglConfig;
37 if (!eglChooseConfig(eglDisplay, attrib, &eglConfig, 1, &nConfigs)) {
42 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_BUFFER_SIZE, &ibuf)) {
47 if (eglGetConfigAttrib(eglDisplay, eglConfig, EGL_DEPTH_SIZE, &ibuf)) {
58 return eglConfig;
81 EGLConfig eglConfig = getEglConfig(eglDisplay, config);
82 if (eglConfig == 0)
    [all...]
RendererSurface.h 31 EGLConfig eglConfig() { return m_config; }
35 static EGLConfig getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config);
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
48 EGLConfig m_config;
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 26 import javax.microedition.khronos.egl.EGLConfig;
169 EGLConfig eglConfig = chooseEglConfig();
170 if (eglConfig == null) {
171 throw new RuntimeException("eglConfig not initialized");
174 mEglContext = createContext(mEgl, mEglDisplay, eglConfig);
176 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, eglConfig, mSurface, null);
199 private static EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
201 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list)
    [all...]
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 37 import javax.microedition.khronos.egl.EGLConfig;
767 static EGLConfig sEglConfig;
    [all...]

Completed in 278 milliseconds