Searched refs:num_config (Results 1 – 6 of 6) sorted by relevance
/cts/tests/tests/effect/src/android/effect/cts/ |
D | GLEnv.java | 53 int[] num_config = new int[1]; in GLEnv() local 54 egl.eglChooseConfig(mEGLDisplay, configSpec, configs, 1, num_config); in GLEnv() 56 if (num_config[0] < 1) { in GLEnv()
|
/cts/hostsidetests/sustainedperf/shadertoy_android/src/ |
D | GLtestView.java | 162 int[] num_config = new int[1]; in chooseConfig() local 163 egl.eglChooseConfig(display, s_configAttribs2, null, 0, num_config); in chooseConfig() 165 int numConfigs = num_config[0]; in chooseConfig() 174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config); in chooseConfig()
|
/cts/tests/vr/src/android/vr/cts/ |
D | OpenGLESActivity.java | 318 int[] num_config = new int[1]; in chooseConfig() local 319 if (!egl.eglChooseConfig(display, configSpec, null, 0, num_config)) { in chooseConfig() 323 int numConfigs = num_config[0]; in chooseConfig() 330 num_config)) { in chooseConfig()
|
/cts/hostsidetests/gputools/layers/jni/ |
D | glesLayer.cpp | 143 …splay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config) { in glesLayer_eglChooseConfig() argument 156 return next(dpy, attrib_list, configs, config_size, num_config); in glesLayer_eglChooseConfig()
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
D | GLSurfaceViewCustom.java | 864 int[] num_config = new int[1]; in chooseConfig() local 866 num_config)) { in chooseConfig() 870 int numConfigs = num_config[0]; in chooseConfig() 879 num_config)) { in chooseConfig()
|
/cts/tests/tests/nativehardware/jni/ |
D | AHardwareBufferGLTest.cpp | 1200 EGLint num_config = 0; in SetUp() local 1201 eglChooseConfig(mDisplay, config_attrib_list, &first_config, 1, &num_config); in SetUp() 1202 if (num_config == 0) { in SetUp() 1206 eglChooseConfig(mDisplay, config_attrib_list, &first_config, 1, &num_config); in SetUp() 1208 ASSERT_GT(num_config, 0); in SetUp()
|