HomeSort by relevance Sort by last modified time
    Searched refs:DisplayPlane (Results 1 - 25 of 27) sorted by null

1 2

  /hardware/intel/img/hwcomposer/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)
129 void DisplayPlane::setSourceCrop(int x, int y, int w, int h
    [all...]
  /hardware/intel/img/hwcomposer/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>
DisplayPlane.h 47 class DisplayPlane {
75 DisplayPlane(int index, int type, int disp);
76 virtual ~DisplayPlane();
IDisplayDevice.h 21 #include <DisplayPlane.h>
PhysicalDevice.h 19 #include <DisplayPlane.h>
  /hardware/intel/img/hwcomposer/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);
OverlayPlaneBase.h 20 #include <DisplayPlane.h>
35 class OverlayPlaneBase : public DisplayPlane {
OverlayPlaneBase.cpp 33 : DisplayPlane(index, PLANE_OVERLAY, disp),
63 if (!DisplayPlane::initialize(bufferCount)) {
139 DisplayPlane::deinitialize();
145 DisplayPlane::invalidateBufferCache();
173 DisplayPlane::assignToDevice(disp);
189 DisplayPlane *plane = zorderConfig[i]->plane;
190 if (plane->getType() == DisplayPlane::PLANE_OVERLAY) {
217 DisplayPlane::reset();
    [all...]
  /hardware/intel/img/hwcomposer/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>
39 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
51 } else if (planeType == DisplayPlane::PLANE_OVERLAY) {
87 if (planeType == DisplayPlane::PLANE_SPRITE || planeType == DisplayPlane::PLANE_PRIMARY) {
104 } 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 {
AnnPlaneManager.h 40 DisplayPlane* allocPlane(int index, int type);
AnnOverlayPlane.h 21 #include <DisplayPlane.h>
AnnRGBPlane.cpp 27 : DisplayPlane(index, type, disp)
56 return DisplayPlane::reset();
129 ret = DisplayPlane::setDataBuffer(handle);
AnnCursorPlane.cpp 28 : DisplayPlane(index, PLANE_CURSOR, disp)
80 ret = DisplayPlane::setDataBuffer(handle);
  /hardware/intel/img/hwcomposer/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;
HwcLayerList.h 23 #include <DisplayPlane.h>
41 virtual DisplayPlane* getPlane(uint32_t index) const;
HwcLayer.cpp 90 bool HwcLayer::attachPlane(DisplayPlane* plane, int device)
109 DisplayPlane* HwcLayer::detachPlane()
114 DisplayPlane *plane = mPlane;
221 DisplayPlane* HwcLayer::getPlane() const
339 } else if (PlaneCapabilities::isFormatSupported(DisplayPlane::PLANE_OVERLAY, this)) {
HwcLayerList.cpp 298 } else if (checkSupported(DisplayPlane::PLANE_SPRITE, hwcLayer)) {
300 } else if (checkSupported(DisplayPlane::PLANE_OVERLAY, hwcLayer)) {
362 DisplayPlane *plane = hwcLayer->detachPlane();
394 int planeNumber = planeManager->getFreePlanes(mDisplayIndex, DisplayPlane::PLANE_CURSOR);
428 ZOrderLayer *zlayer = addZOrderLayer(DisplayPlane::PLANE_CURSOR, mCursorCandidates[i]);
445 int planeNumber = planeManager->getFreePlanes(mDisplayIndex, DisplayPlane::PLANE_OVERLAY);
479 ZOrderLayer *zlayer = addZOrderLayer(DisplayPlane::PLANE_OVERLAY, mOverlayCandidates[i]);
497 int planeNumber = planeManager->getFreePlanes(mDisplayIndex, DisplayPlane::PLANE_SPRITE);
531 ZOrderLayer *zlayer = addZOrderLayer(DisplayPlane::PLANE_SPRITE, mSpriteCandidates[i]);
598 int type = DisplayPlane::PLANE_PRIMARY
    [all...]
  /hardware/intel/img/hwcomposer/ips/tangier/
TngDisplayQuery.cpp 18 #include <DisplayPlane.h>
TngDisplayContext.cpp 19 #include <DisplayPlane.h>
97 DisplayPlane* plane = layerList->getPlane(i);

Completed in 121 milliseconds

1 2