Home | History | Annotate | Download | only in surfaceflinger

Lines Matching refs:hw_h

3122     const uint32_t hw_h = hw->getHeight();
3123 const bool filtering = reqWidth != hw_w || reqWidth != hw_h;
3129 sourceCrop.setRightBottom(Point(hw_w, hw_h));
3142 if (static_cast<uint32_t>(sourceCrop.bottom) > hw_h) {
3143 ALOGE("Invalid crop rect: b = %d (> %d)", sourceCrop.bottom, hw_h);
3151 reqWidth, reqHeight, sourceCrop, hw_h, yswap, rotation);
3190 const uint32_t hw_h = hw->getHeight();
3192 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
3194 reqWidth, reqHeight, hw_w, hw_h);
3199 reqHeight = (!reqHeight) ? hw_h : reqHeight;