Searched refs:dsp (Results 1 – 4 of 4) sorted by relevance
/hardware/intel/img/hwcomposer/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/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/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()
|