Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/framework/egl/
DegluUtil.cpp227 const EGLint hRes = querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in getSurfaceResolution() local
230 if (hRes == EGL_UNKNOWN || vRes == EGL_UNKNOWN) in getSurfaceResolution()
232 return tcu::IVec2(hRes, vRes); in getSurfaceResolution()
/third_party/vk-gl-cts/modules/egl/
DteglQuerySurfaceTests.cpp150 const EGLint hRes = eglu::querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_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()