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

  /frameworks/base/core/java/android/view/
HardwareRenderer.java 586 int[] configsCount = new int[1];
592 sEgl.eglChooseConfig(sEglDisplay, configSpec, null, 0, configsCount);
594 EGLConfig[] debugConfigs = new EGLConfig[configsCount[0]];
596 configsCount[0], configsCount);
603 if (!sEgl.eglChooseConfig(sEglDisplay, configSpec, configs, 1, configsCount)) {
606 } else if (configsCount[0] > 0) {
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java 408 int[] configsCount = new int[1];
411 if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, configsCount)) {
414 } else if (configsCount[0] > 0) {
  /packages/apps/Nfc/src/com/android/nfc/
FireflyRenderThread.java 323 int[] configsCount = new int[1];
325 if (!mEgl.eglChooseConfig(mEglDisplay, sEglConfig, configs, 1, configsCount)) {
328 } else if (configsCount[0] > 0) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 607 int[] configsCount = new int[1];
610 if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, configsCount)) {
613 } else if (configsCount[0] > 0) {

Completed in 321 milliseconds