/hardware/intel/img/hwcomposer/merrifield/include/ |
DisplayPlaneManager.h | 20 #include <DisplayPlane.h> 39 DisplayPlane *plane; 71 virtual void reclaimPlane(int dsp, DisplayPlane& plane); 81 DisplayPlane* getPlane(int type, int index); 82 DisplayPlane* getAnyPlane(int type); 84 void putPlane(int dsp, DisplayPlane& plane); 86 virtual DisplayPlane* allocPlane(int index, int type) = 0; 89 int mPlaneCount[DisplayPlane::PLANE_MAX]; 96 Vector<DisplayPlane*> mPlanes[DisplayPlane::PLANE_MAX] [all...] |
PrimaryDevice.h | 19 #include <DisplayPlane.h>
|
/hardware/intel/img/hwcomposer/merrifield/common/planes/ |
DisplayPlaneManager.cpp | 32 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 49 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 52 DisplayPlane *plane = mPlanes[i].itemAt(j); 74 mPlaneCount[DisplayPlane::PLANE_SPRITE] = mSpritePlaneCount; 75 mPlaneCount[DisplayPlane::PLANE_OVERLAY] = mOverlayPlaneCount; 76 mPlaneCount[DisplayPlane::PLANE_PRIMARY] = mPrimaryPlaneCount; 77 mPlaneCount[DisplayPlane::PLANE_CURSOR] = mCursorPlaneCount; 85 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 90 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 95 DisplayPlane* plane = allocPlane(j, i) [all...] |
DisplayPlane.cpp | 18 #include <DisplayPlane.h> 24 DisplayPlane::DisplayPlane(int index, int type, int disp) 45 DisplayPlane::~DisplayPlane() 50 bool DisplayPlane::initialize(uint32_t bufferCount) 69 void DisplayPlane::deinitialize() 87 void DisplayPlane::checkPosition(int& x, int& y, int& w, int& h) 104 void DisplayPlane::setPosition(int x, int y, int w, int h) 118 void DisplayPlane::setSourceCrop(int x, int y, int w, int h [all...] |
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/planes/ |
DisplayPlaneManager.cpp | 32 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 49 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 52 DisplayPlane *plane = mPlanes[i].itemAt(j); 74 mPlaneCount[DisplayPlane::PLANE_SPRITE] = mSpritePlaneCount; 75 mPlaneCount[DisplayPlane::PLANE_OVERLAY] = mOverlayPlaneCount; 76 mPlaneCount[DisplayPlane::PLANE_PRIMARY] = mPrimaryPlaneCount; 77 mPlaneCount[DisplayPlane::PLANE_CURSOR] = mCursorPlaneCount; 85 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 90 for (i = 0; i < DisplayPlane::PLANE_MAX; i++) { 95 DisplayPlane* plane = allocPlane(j, i) [all...] |
DisplayPlane.cpp | 18 #include <DisplayPlane.h> 25 DisplayPlane::DisplayPlane(int index, int type, int disp) 51 DisplayPlane::~DisplayPlane() 56 bool DisplayPlane::initialize(uint32_t bufferCount) 75 void DisplayPlane::deinitialize() 93 void DisplayPlane::checkPosition(int& x, int& y, int& w, int& h) 110 void DisplayPlane::setPosition(int x, int y, int w, int h) 139 void DisplayPlane::setSourceCrop(int x, int y, int w, int h [all...] |
/hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
DisplayPlaneManager.h | 20 #include <DisplayPlane.h> 39 DisplayPlane *plane; 71 virtual void reclaimPlane(int dsp, DisplayPlane& plane); 81 DisplayPlane* getPlane(int type, int index); 82 DisplayPlane* getAnyPlane(int type); 84 void putPlane(int dsp, DisplayPlane& plane); 86 virtual DisplayPlane* allocPlane(int index, int type) = 0; 89 int mPlaneCount[DisplayPlane::PLANE_MAX]; 96 Vector<DisplayPlane*> mPlanes[DisplayPlane::PLANE_MAX] [all...] |
/hardware/intel/img/hwcomposer/merrifield/ips/common/ |
SpritePlaneBase.h | 22 #include <DisplayPlane.h> 27 class SpritePlaneBase : public DisplayPlane {
|
SpritePlaneBase.cpp | 24 : DisplayPlane(index, PLANE_SPRITE, disp), 39 return DisplayPlane::flip(ctx);
|
PlaneCapabilities.cpp | 18 #include <DisplayPlane.h> 41 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 53 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { 89 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 105 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { 144 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 161 } else if (planeType == DisplayPlane::PLANE_OVERLAY) [all...] |
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/ |
SpritePlaneBase.h | 21 #include <DisplayPlane.h> 26 class SpritePlaneBase : public DisplayPlane {
|
SpritePlaneBase.cpp | 24 : DisplayPlane(index, PLANE_SPRITE, disp), 39 return DisplayPlane::flip(ctx);
|
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/ |
AnnPlaneManager.cpp | 39 {'A', DisplayPlane::PLANE_PRIMARY, 0}, 40 {'B', DisplayPlane::PLANE_PRIMARY, 1}, 41 {'C', DisplayPlane::PLANE_PRIMARY, 2}, 42 {'D', DisplayPlane::PLANE_SPRITE, 0}, 43 {'E', DisplayPlane::PLANE_SPRITE, 1}, 44 {'F', DisplayPlane::PLANE_SPRITE, 2}, 45 {'G', DisplayPlane::PLANE_OVERLAY, 0}, // nickname for Overlay A 46 {'H', DisplayPlane::PLANE_OVERLAY, 1}, // nickname for Overlay C 47 {'I', DisplayPlane::PLANE_CURSOR, 0}, // nickname for cursor A 48 {'J', DisplayPlane::PLANE_CURSOR, 1}, // nickname for cursor [all...] |
AnnCursorPlane.h | 24 #include <DisplayPlane.h> 31 class AnnCursorPlane : public DisplayPlane {
|
AnnRGBPlane.h | 23 #include <DisplayPlane.h> 30 class AnnRGBPlane : public DisplayPlane {
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/ |
AnnPlaneManager.cpp | 39 {'A', DisplayPlane::PLANE_PRIMARY, 0}, 40 {'B', DisplayPlane::PLANE_PRIMARY, 1}, 41 {'C', DisplayPlane::PLANE_PRIMARY, 2}, 42 {'D', DisplayPlane::PLANE_SPRITE, 0}, 43 {'E', DisplayPlane::PLANE_SPRITE, 1}, 44 {'F', DisplayPlane::PLANE_SPRITE, 2}, 45 {'G', DisplayPlane::PLANE_OVERLAY, 0}, // nickname for Overlay A 46 {'H', DisplayPlane::PLANE_OVERLAY, 1}, // nickname for Overlay C 47 {'I', DisplayPlane::PLANE_CURSOR, 0}, // nickname for cursor A 48 {'J', DisplayPlane::PLANE_CURSOR, 1}, // nickname for cursor [all...] |
PlaneCapabilities.cpp | 18 #include <DisplayPlane.h> 42 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 54 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { 88 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 105 } else if (planeType == DisplayPlane::PLANE_OVERLAY) { 143 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) { 155 } else if (planeType == DisplayPlane::PLANE_OVERLAY) [all...] |
AnnCursorPlane.h | 24 #include <DisplayPlane.h> 31 class AnnCursorPlane : public DisplayPlane {
|
AnnRGBPlane.h | 22 #include <DisplayPlane.h> 29 class AnnRGBPlane : public DisplayPlane {
|
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/ |
TngPlaneManager.cpp | 51 DisplayPlane* TngPlaneManager::allocPlane(int index, int type) 53 DisplayPlane *plane = 0; 56 case DisplayPlane::PLANE_PRIMARY: 59 case DisplayPlane::PLANE_SPRITE: 62 case DisplayPlane::PLANE_OVERLAY: 65 case DisplayPlane::PLANE_CURSOR: 72 if (plane && !plane->initialize(DisplayPlane::MIN_DATA_BUFFER_COUNT)) { 91 case DisplayPlane::PLANE_PRIMARY: 92 case DisplayPlane::PLANE_SPRITE: 100 case DisplayPlane::PLANE_OVERLAY [all...] |
TngPlaneManager.h | 39 DisplayPlane* allocPlane(int index, int type); 40 DisplayPlane* getPlaneHelper(int dsp, int type);
|
TngCursorPlane.h | 24 #include <DisplayPlane.h> 31 class TngCursorPlane : public DisplayPlane {
|
/hardware/intel/img/hwcomposer/merrifield/common/base/ |
HwcLayer.h | 20 #include <DisplayPlane.h> 65 bool attachPlane(DisplayPlane *plane, int device); 66 DisplayPlane* detachPlane(); 84 DisplayPlane* getPlane() const; 106 DisplayPlane *mPlane;
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/ |
HwcLayer.h | 20 #include <DisplayPlane.h> 59 bool attachPlane(DisplayPlane *plane, int device); 60 DisplayPlane* detachPlane(); 78 DisplayPlane* getPlane() const; 99 DisplayPlane *mPlane;
|
/hardware/intel/img/hwcomposer/merrifield/ips/penwell/ |
PnwOverlayPlane.h | 21 #include <DisplayPlane.h>
|