Home
last modified time | relevance | path

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

/hardware/intel/img/hwcomposer/ips/anniedale/
DPlaneCapabilities.cpp34 bool PlaneCapabilities::isFormatSupported(int planeType, HwcLayer *hwcLayer) in isFormatSupported() argument
39 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { in isFormatSupported()
51 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { in isFormatSupported()
72 ELOGTRACE("invalid plane type %d", planeType); in isFormatSupported()
77 bool PlaneCapabilities::isSizeSupported(int planeType, HwcLayer *hwcLayer) in isSizeSupported() argument
87 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { in isSizeSupported()
104 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { in isSizeSupported()
133 ELOGTRACE("invalid plane type %d", planeType); in isSizeSupported()
138 bool PlaneCapabilities::isBlendingSupported(int planeType, HwcLayer *hwcLayer) in isBlendingSupported() argument
143 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { in isBlendingSupported()
[all …]
DAnnPlaneManager.cpp181 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) { in isValidZOrder()
189 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY && in isValidZOrder()
190 config[i]->planeType != DisplayPlane::PLANE_CURSOR) { in isValidZOrder()
209 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY && in isValidZOrder()
210 config[i]->planeType != DisplayPlane::PLANE_CURSOR) { in isValidZOrder()
237 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) { in assignPlanes()
282 if (config[i]->planeType == DisplayPlane::PLANE_CURSOR) { in assignPlanes()
307 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY && in assignPlanes()
309 ELOGTRACE("invalid plane type %d, expected %d", desc.type, config[i]->planeType); in assignPlanes()
313 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY) { in assignPlanes()
[all …]
/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.h37 int planeType; member
/hardware/intel/img/hwcomposer/common/base/
DHwcLayerList.cpp48 bool HwcLayerList::checkSupported(int planeType, HwcLayer *hwcLayer) in checkSupported() argument
61 VLOGTRACE("plane type %d: (skip layer flag was set)", planeType); in checkSupported()
77 valid = PlaneCapabilities::isTransformSupported(planeType, hwcLayer); in checkSupported()
79 VLOGTRACE("plane type %d: (bad transform)", planeType); in checkSupported()
84 valid = PlaneCapabilities::isFormatSupported(planeType, hwcLayer); in checkSupported()
86 VLOGTRACE("plane type %d: (bad buffer format)", planeType); in checkSupported()
91 valid = PlaneCapabilities::isSizeSupported(planeType, hwcLayer); in checkSupported()
93 VLOGTRACE("plane type %d: (bad buffer size)", planeType); in checkSupported()
98 valid = PlaneCapabilities::isBlendingSupported(planeType, hwcLayer); in checkSupported()
100 VLOGTRACE("plane type %d: (bad blending)", planeType); in checkSupported()
[all …]
DHwcLayerList.h50 bool checkSupported(int planeType, HwcLayer *hwcLayer);