Home
last modified time | relevance | path

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

/hardware/qcom/display/msm8226/libhwcomposer/
Dhwc_dump_layers.cpp225 hwc_rect_t const *hwcRects = layer->visibleRegionScreen.rects; in logLayer() local
231 for (size_t i = 0 ; (hwcRects && (i < numHwcRects)); i++) { in logLayer()
235 hwcRects[i].left, hwcRects[i].top, in logLayer()
236 hwcRects[i].right, hwcRects[i].bottom); in logLayer()
/hardware/qcom/display/msm8084/libhwcomposer/
Dhwc_dump_layers.cpp225 hwc_rect_t const *hwcRects = layer->visibleRegionScreen.rects; in logLayer() local
231 for (size_t i = 0 ; (hwcRects && (i < numHwcRects)); i++) { in logLayer()
235 hwcRects[i].left, hwcRects[i].top, in logLayer()
236 hwcRects[i].right, hwcRects[i].bottom); in logLayer()
/hardware/qcom/display/msm8994/libhwcomposer/
Dhwc_dump_layers.cpp229 hwc_rect_t const *hwcRects = layer->visibleRegionScreen.rects; in logLayer() local
235 for (size_t i = 0 ; (hwcRects && (i < numHwcRects)); i++) { in logLayer()
239 hwcRects[i].left, hwcRects[i].top, in logLayer()
240 hwcRects[i].right, hwcRects[i].bottom); in logLayer()
/hardware/google/graphics/common/libhwc2.1/libdevice/
DExynosDisplay.cpp5858 android::Vector <hwc_rect_t> hwcRects; in getLayerRegion() local
5865 hwcRects = layer->mDamageRects; in getLayerRegion()
5868 if ((numRects == 0) || (hwcRects.size() == 0)) in getLayerRegion()
5871 if ((numRects == 1) && (hwcRects[0].left == 0) && (hwcRects[0].top == 0) && in getLayerRegion()
5872 (hwcRects[0].right == 0) && (hwcRects[0].bottom == 0)) in getLayerRegion()
5877 for (size_t j = 0; j < hwcRects.size(); j++) { in getLayerRegion()
5880 if ((hwcRects[j].left < 0) || (hwcRects[j].top < 0) || in getLayerRegion()
5881 (hwcRects[j].right < 0) || (hwcRects[j].bottom < 0) || in getLayerRegion()
5882 … (hwcRects[j].left >= hwcRects[j].right) || (hwcRects[j].top >= hwcRects[j].bottom) || in getLayerRegion()
5883 (hwcRects[j].right - hwcRects[j].left > WIDTH(layer->mSourceCrop)) || in getLayerRegion()
[all …]