OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:configscount
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/view/
HardwareRenderer.java
546
int[]
configsCount
= new int[1];
552
sEgl.eglChooseConfig(sEglDisplay, configSpec, null, 0,
configsCount
);
554
EGLConfig[] debugConfigs = new EGLConfig[
configsCount
[0]];
556
configsCount
[0],
configsCount
);
563
if (!sEgl.eglChooseConfig(sEglDisplay, configSpec, configs, 1,
configsCount
)) {
566
} else if (
configsCount
[0] > 0) {
[
all
...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java
406
int[]
configsCount
= new int[1];
409
if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1,
configsCount
)) {
412
} 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
605
int[]
configsCount
= new int[1];
608
if (!mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1,
configsCount
)) {
611
} else if (
configsCount
[0] > 0) {
Completed in 335 milliseconds