Searched refs:hw_w (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp3121 const uint32_t hw_w = hw->getWidth(); local
3123 const bool filtering = reqWidth != hw_w || reqWidth != hw_h;
3129 sourceCrop.setRightBottom(Point(hw_w, hw_h));
3136 if (static_cast<uint32_t>(sourceCrop.right) > hw_w) {
3137 ALOGE("Invalid crop rect: r = %d (> %d)", sourceCrop.right, hw_w);
3189 const uint32_t hw_w = hw->getWidth(); local
3192 if ((reqWidth > hw_w) || (reqHeight > hw_h)) {
3194 reqWidth, reqHeight, hw_w, hw_h);
3198 reqWidth = (!reqWidth) ? hw_w : reqWidth;

Completed in 809 milliseconds