/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/ |
D | AnnPlaneManager.cpp | 169 bool AnnPlaneManager::isValidZOrder(int dsp, ZOrderConfig& config) in isValidZOrder() argument 178 if (dsp == IDisplayDevice::DEVICE_PRIMARY) { in isValidZOrder() 206 } else if (dsp == IDisplayDevice::DEVICE_EXTERNAL) { in isValidZOrder() 219 ELOGTRACE("invalid display device %d", dsp); in isValidZOrder() 225 bool AnnPlaneManager::assignPlanes(int dsp, ZOrderConfig& config) in assignPlanes() argument 227 if (dsp < 0 || dsp > IDisplayDevice::DEVICE_EXTERNAL) { in assignPlanes() 228 ELOGTRACE("invalid display device %d", dsp); in assignPlanes() 243 if (dsp == IDisplayDevice::DEVICE_PRIMARY) in assignPlanes() 250 if (dsp == IDisplayDevice::DEVICE_PRIMARY) in assignPlanes() 258 if (assignPlanes(dsp, config, zorderDesc->zorder)) { in assignPlanes() [all …]
|
D | AnnPlaneManager.h | 33 virtual bool isValidZOrder(int dsp, ZOrderConfig& config); 34 virtual bool assignPlanes(int dsp, ZOrderConfig& config); 35 virtual int getFreePlanes(int dsp, int type); 41 bool assignPlanes(int dsp, ZOrderConfig& config, const char *zorder);
|
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/ |
D | AnnPlaneManager.cpp | 194 bool AnnPlaneManager::isValidZOrder(int dsp, ZOrderConfig& config) in isValidZOrder() argument 213 if (dsp == IDisplayDevice::DEVICE_PRIMARY) { in isValidZOrder() 241 } else if (dsp == IDisplayDevice::DEVICE_EXTERNAL) { in isValidZOrder() 254 ETRACE("invalid display device %d", dsp); in isValidZOrder() 260 bool AnnPlaneManager::assignPlanes(int dsp, ZOrderConfig& config) in assignPlanes() argument 262 if (dsp < 0 || dsp > IDisplayDevice::DEVICE_EXTERNAL) { in assignPlanes() 263 ETRACE("invalid display device %d", dsp); in assignPlanes() 279 if (dsp == IDisplayDevice::DEVICE_PRIMARY) { in assignPlanes() 293 if (assignPlanes(dsp, config, zorderDesc->zorder)) { in assignPlanes() 301 bool AnnPlaneManager::assignPlanes(int dsp, ZOrderConfig& config, const char *zorder) in assignPlanes() argument [all …]
|
D | AnnPlaneManager.h | 33 virtual bool isValidZOrder(int dsp, ZOrderConfig& config); 34 virtual bool assignPlanes(int dsp, ZOrderConfig& config); 35 virtual int getFreePlanes(int dsp, int type); 41 bool assignPlanes(int dsp, ZOrderConfig& config, const char *zorder);
|
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/ |
D | TngPlaneManager.cpp | 80 bool TngPlaneManager::isValidZOrder(int dsp, ZOrderConfig& config) in isValidZOrder() argument 121 bool TngPlaneManager::assignPlanes(int dsp, ZOrderConfig& config) in assignPlanes() argument 127 if (!getFreePlanes(dsp, layer->planeType)) { in assignPlanes() 128 DTRACE("no plane available for dsp %d, type %d", dsp, layer->planeType); in assignPlanes() 140 layer->plane = getPlaneHelper(dsp, layer->planeType); in assignPlanes() 165 DisplayPlane* TngPlaneManager::getPlaneHelper(int dsp, int type) in getPlaneHelper() argument 169 if (dsp < 0 || dsp > IDisplayDevice::DEVICE_EXTERNAL) { in getPlaneHelper() 170 ETRACE("Invalid display device %d", dsp); in getPlaneHelper() 174 int index = dsp == IDisplayDevice::DEVICE_PRIMARY ? 0 : 1; in getPlaneHelper()
|
D | TngPlaneManager.h | 33 virtual bool isValidZOrder(int dsp, ZOrderConfig& config); 34 virtual bool assignPlanes(int dsp, ZOrderConfig& config); 40 DisplayPlane* getPlaneHelper(int dsp, int type);
|
/hardware/intel/img/hwcomposer/merrifield/include/ |
D | DisplayPlaneManager.h | 66 virtual bool isValidZOrder(int dsp, ZOrderConfig& config) = 0; 67 virtual bool assignPlanes(int dsp, ZOrderConfig& config) = 0; 70 virtual int getFreePlanes(int dsp, int type); 71 virtual void reclaimPlane(int dsp, DisplayPlane& plane); 84 void putPlane(int dsp, DisplayPlane& plane);
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
D | DisplayPlaneManager.h | 66 virtual bool isValidZOrder(int dsp, ZOrderConfig& config) = 0; 67 virtual bool assignPlanes(int dsp, ZOrderConfig& config) = 0; 70 virtual int getFreePlanes(int dsp, int type); 71 virtual void reclaimPlane(int dsp, DisplayPlane& plane); 84 void putPlane(int dsp, DisplayPlane& plane);
|
/hardware/intel/img/hwcomposer/merrifield/common/planes/ |
D | DisplayPlaneManager.cpp | 194 void DisplayPlaneManager::putPlane(int dsp, DisplayPlane& plane) in putPlane() argument 226 int DisplayPlaneManager::getFreePlanes(int dsp, int type) in getFreePlanes() argument 230 if (dsp < 0 || dsp > IDisplayDevice::DEVICE_EXTERNAL) { in getFreePlanes() 231 ETRACE("Invalid display device %d", dsp); in getFreePlanes() 244 return ((freePlanes & (1 << dsp)) == 0) ? 0 : 1; in getFreePlanes() 257 void DisplayPlaneManager::reclaimPlane(int dsp, DisplayPlane& plane) in reclaimPlane() argument
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/planes/ |
D | DisplayPlaneManager.cpp | 226 int DisplayPlaneManager::getFreePlanes(int dsp, int type) in getFreePlanes() argument 230 if (dsp < 0 || dsp > IDisplayDevice::DEVICE_EXTERNAL) { in getFreePlanes() 231 ELOGTRACE("Invalid display device %d", dsp); in getFreePlanes() 244 return ((freePlanes & (1 << dsp)) == 0) ? 0 : 1; in getFreePlanes()
|