Home
last modified time | relevance | path

Searched refs:numConfigs (Results 1 – 3 of 3) sorted by relevance

/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Drenderer.cpp67 EGLint numConfigs; in initDisplay() local
79 eglChooseConfig(display, attribs, nullptr,0, &numConfigs); in initDisplay()
80 std::unique_ptr<EGLConfig[]> supportedConfigs(new EGLConfig[numConfigs]); in initDisplay()
82 eglChooseConfig(display, attribs, supportedConfigs.get(), numConfigs, &numConfigs); in initDisplay()
83 assert(numConfigs); in initDisplay()
85 for (; i < numConfigs; i++) { in initDisplay()
98 if (i == numConfigs) { in initDisplay()
/tools/test/graphicsbenchmark/functional_tests/native/
DglExtensions_test.cpp58 EGLint numConfigs; in setupEGL() local
63 eglChooseConfig(eglDisp, confAttr, &eglConf, 1, &numConfigs); in setupEGL()
/tools/test/graphicsbenchmark/functional_tests/java/src/cpp/
Dnative_choreo_activity.cpp62 EGLint numConfigs; in setupEGL() local
74 if (!eglChooseConfig(eglDisp, confAttr, &eglConf, 1, &numConfigs)) { in setupEGL()