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.cpp68 EGLint numConfigs; in initDisplay() local
80 eglChooseConfig(display, attribs, nullptr,0, &numConfigs); in initDisplay()
81 std::unique_ptr<EGLConfig[]> supportedConfigs(new EGLConfig[numConfigs]); in initDisplay()
83 eglChooseConfig(display, attribs, supportedConfigs.get(), numConfigs, &numConfigs); in initDisplay()
84 assert(numConfigs); in initDisplay()
86 for (; i < numConfigs; i++) { in initDisplay()
99 if (i == numConfigs) { in initDisplay()
/tools/test/graphicsbenchmark/functional_tests/native/
DglExtensions_test.cpp59 EGLint numConfigs; in setupEGL() local
64 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()