Home
last modified time | relevance | path

Searched refs:vRes (Results 1 – 2 of 2) sorted by relevance

/external/deqp/framework/egl/
DegluUtil.cpp219 const EGLint vRes = querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in getSurfaceResolution() local
221 if (hRes == EGL_UNKNOWN || vRes == EGL_UNKNOWN) in getSurfaceResolution()
223 return tcu::IVec2(hRes, vRes); in getSurfaceResolution()
/external/deqp/modules/egl/
DteglQuerySurfaceTests.cpp151 const EGLint vRes = eglu::querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in checkCommonAttributes() local
153 if ((hRes <= 0 || vRes <= 0) && (hRes != EGL_UNKNOWN && vRes != EGL_UNKNOWN)) in checkCommonAttributes()
155 …log << TestLog::Message << " Fail, invalid surface resolution " << hRes << "x" << vRes << TestL… in checkCommonAttributes()