Searched refs:hRes (Results 1 – 3 of 3) sorted by relevance
375 this.setResolution = function (hRes, wRes) argument377 var res = wRes * hRes;378 if (res > 0 && res < 1000000 && (wRes != width || hRes != height)) {380 height = hRes;
218 const EGLint hRes = querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in getSurfaceResolution() local221 if (hRes == EGL_UNKNOWN || vRes == EGL_UNKNOWN) in getSurfaceResolution()223 return tcu::IVec2(hRes, vRes); in getSurfaceResolution()
150 const EGLint hRes = eglu::querySurfaceInt(egl, display, surface, EGL_HORIZONTAL_RESOLUTION); in checkCommonAttributes() local153 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()