HomeSort by relevance Sort by last modified time
    Searched refs:planeType (Results 1 - 14 of 14) sorted by null

  /hardware/intel/img/hwcomposer/merrifield/include/
PlaneCapabilities.h 28 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);
DisplayPlaneManager.h 37 int planeType;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
PlaneCapabilities.h 28 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);
DisplayPlaneManager.h 37 int planeType;
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
PlaneCapabilities.cpp 36 bool PlaneCapabilities::isFormatSupported(int planeType, HwcLayer *hwcLayer)
41 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
53 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
74 ETRACE("invalid plane type %d", planeType);
79 bool PlaneCapabilities::isSizeSupported(int planeType, HwcLayer *hwcLayer)
89 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
105 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
134 ETRACE("invalid plane type %d", planeType);
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
PlaneCapabilities.cpp 37 bool PlaneCapabilities::isFormatSupported(int planeType, HwcLayer *hwcLayer)
42 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
54 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
75 ELOGTRACE("invalid plane type %d", planeType);
80 bool PlaneCapabilities::isSizeSupported(int planeType, HwcLayer *hwcLayer)
88 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
105 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
134 ELOGTRACE("invalid plane type %d", planeType);
    [all...]
AnnPlaneManager.cpp 181 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) {
189 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY &&
190 config[i]->planeType != DisplayPlane::PLANE_CURSOR) {
209 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY &&
210 config[i]->planeType != DisplayPlane::PLANE_CURSOR) {
237 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) {
282 if (config[i]->planeType == DisplayPlane::PLANE_CURSOR) {
307 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY &&
309 ELOGTRACE("invalid plane type %d, expected %d", desc.type, config[i]->planeType);
313 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY)
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
PlaneCapabilities.cpp 38 bool PlaneCapabilities::isFormatSupported(int planeType, HwcLayer *hwcLayer)
43 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
55 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
75 ETRACE("invalid plane type %d", planeType);
80 bool PlaneCapabilities::isSizeSupported(int planeType, HwcLayer *hwcLayer)
90 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
107 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
153 ETRACE("invalid plane type %d", planeType);
    [all...]
AnnPlaneManager.cpp 200 if (config[i]->planeType == DisplayPlane::PLANE_CURSOR) {
216 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) {
224 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY &&
225 config[i]->planeType != DisplayPlane::PLANE_CURSOR) {
244 if (config[i]->planeType != DisplayPlane::PLANE_OVERLAY &&
245 config[i]->planeType != DisplayPlane::PLANE_CURSOR) {
272 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY) {
316 if (config[i]->planeType == DisplayPlane::PLANE_CURSOR) {
342 if (config[i]->planeType == DisplayPlane::PLANE_OVERLAY &&
344 ETRACE("invalid plane type %d, expected %d", desc.type, config[i]->planeType);
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngPlaneManager.cpp 90 switch (layer->planeType) {
127 if (!getFreePlanes(dsp, layer->planeType)) {
128 DTRACE("no plane available for dsp %d, type %d", dsp, layer->planeType);
133 if (config.size() == 1 && config[0]->planeType == DisplayPlane::PLANE_SPRITE) {
134 config[0]->planeType == DisplayPlane::PLANE_PRIMARY;
140 layer->plane = getPlaneHelper(dsp, layer->planeType);
143 ETRACE("failed to assign plane for type %d", layer->planeType);
  /hardware/intel/img/hwcomposer/merrifield/common/base/
HwcLayerList.cpp 49 bool HwcLayerList::checkSupported(int planeType, HwcLayer *hwcLayer)
62 VTRACE("plane type %d: (skip layer flag was set)", planeType);
78 valid = PlaneCapabilities::isTransformSupported(planeType, hwcLayer);
80 VTRACE("plane type %d: (bad transform)", planeType);
85 valid = PlaneCapabilities::isFormatSupported(planeType, hwcLayer);
87 VTRACE("plane type %d: (bad buffer format)", planeType);
92 valid = PlaneCapabilities::isSizeSupported(planeType, hwcLayer);
94 VTRACE("plane type %d: (bad buffer size)", planeType);
99 valid = PlaneCapabilities::isBlendingSupported(planeType, hwcLayer);
101 VTRACE("plane type %d: (bad blending)", planeType);
    [all...]
HwcLayerList.h 49 bool checkSupported(int planeType, HwcLayer *hwcLayer);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcLayerList.cpp 48 bool HwcLayerList::checkSupported(int planeType, HwcLayer *hwcLayer)
61 VLOGTRACE("plane type %d: (skip layer flag was set)", planeType);
77 valid = PlaneCapabilities::isTransformSupported(planeType, hwcLayer);
79 VLOGTRACE("plane type %d: (bad transform)", planeType);
84 valid = PlaneCapabilities::isFormatSupported(planeType, hwcLayer);
86 VLOGTRACE("plane type %d: (bad buffer format)", planeType);
91 valid = PlaneCapabilities::isSizeSupported(planeType, hwcLayer);
93 VLOGTRACE("plane type %d: (bad buffer size)", planeType);
98 valid = PlaneCapabilities::isBlendingSupported(planeType, hwcLayer);
100 VLOGTRACE("plane type %d: (bad blending)", planeType);
    [all...]
HwcLayerList.h 50 bool checkSupported(int planeType, HwcLayer *hwcLayer);

Completed in 2911 milliseconds