Home
last modified time | relevance | path

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

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