Home
last modified time | relevance | path

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

/hardware/intel/img/hwcomposer/common/base/
DHwcLayerList.cpp48 bool HwcLayerList::checkSupported(int planeType, HwcLayer *hwcLayer) in checkSupported() argument
51 hwc_layer_1_t& layer = *(hwcLayer->getLayer()); in checkSupported()
54 if (hwcLayer->getType() == HwcLayer::LAYER_FORCE_FB) { in checkSupported()
71 if (!hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER) { in checkSupported()
77 valid = PlaneCapabilities::isTransformSupported(planeType, hwcLayer); in checkSupported()
84 valid = PlaneCapabilities::isFormatSupported(planeType, hwcLayer); in checkSupported()
91 valid = PlaneCapabilities::isSizeSupported(planeType, hwcLayer); in checkSupported()
98 valid = PlaneCapabilities::isBlendingSupported(planeType, hwcLayer); in checkSupported()
105 valid = PlaneCapabilities::isScalingSupported(planeType, hwcLayer); in checkSupported()
115 bool HwcLayerList::checkRgbOverlaySupported(HwcLayer *hwcLayer) in checkRgbOverlaySupported() argument
[all …]
DHwcLayerList.h50 bool checkSupported(int planeType, HwcLayer *hwcLayer);
51 bool checkRgbOverlaySupported(HwcLayer *hwcLayer);
52 bool checkCursorSupported(HwcLayer *hwcLayer);
61 bool assignPrimaryPlaneHelper(HwcLayer *hwcLayer, int zorder = -1);
65 ZOrderLayer* addZOrderLayer(int type, HwcLayer *hwcLayer, int zorder = -1);
/hardware/intel/img/hwcomposer/ips/anniedale/
DPlaneCapabilities.cpp34 bool PlaneCapabilities::isFormatSupported(int planeType, HwcLayer *hwcLayer) in isFormatSupported() argument
36 uint32_t format = hwcLayer->getFormat(); in isFormatSupported()
37 uint32_t trans = hwcLayer->getLayer()->transform; in isFormatSupported()
77 bool PlaneCapabilities::isSizeSupported(int planeType, HwcLayer *hwcLayer) in isSizeSupported() argument
79 uint32_t format = hwcLayer->getFormat(); in isSizeSupported()
80 uint32_t w = hwcLayer->getBufferWidth(); in isSizeSupported()
81 uint32_t h = hwcLayer->getBufferHeight(); in isSizeSupported()
82 const stride_t& stride = hwcLayer->getBufferStride(); in isSizeSupported()
138 bool PlaneCapabilities::isBlendingSupported(int planeType, HwcLayer *hwcLayer) in isBlendingSupported() argument
140 uint32_t blending = (uint32_t)hwcLayer->getLayer()->blending; in isBlendingSupported()
[all …]
DAnnPlaneManager.cpp328 config[i]->hwcLayer->getTransform() != 0) { in assignPlanes()
/hardware/intel/img/hwcomposer/include/
DPlaneCapabilities.h28 static bool isFormatSupported(int planeType, HwcLayer *hwcLayer);
29 static bool isSizeSupported(int planeType, HwcLayer *hwcLayer);
30 static bool isBlendingSupported(int planeType, HwcLayer *hwcLayer);
31 static bool isScalingSupported(int planeType, HwcLayer *hwcLayer);
32 static bool isTransformSupported(int planeType, HwcLayer *hwcLayer);
DDisplayPlaneManager.h40 HwcLayer *hwcLayer; member