Searched defs:hwc (Results 1 - 6 of 6) sorted by relevance

/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFramebufferSurface.cpp53 FramebufferSurface::FramebufferSurface(HWComposer& hwc, int disp, argument
59 mHwc(hwc)
H A DVirtualDisplaySurface.cpp42 VirtualDisplaySurface::VirtualDisplaySurface(HWComposer& hwc, int32_t dispId, argument
47 mHwc(hwc),
H A DHWComposer.cpp53 static uint32_t hwcApiVersion(const hwc_composer_device_1_t* hwc) { argument
54 uint32_t hwcVersion = hwc->common.version;
58 static uint32_t hwcHeaderVersion(const hwc_composer_device_1_t* hwc) { argument
59 uint32_t hwcVersion = hwc->common.version;
63 static bool hwcHasApiVersion(const hwc_composer_device_1_t* hwc, argument
65 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK);
78 HWComposer* hwc; member in struct:android::HWComposer::cb_context
137 mCBContext->hwc = this;
168 "should only have fbdev if no hwc or hwc i
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp138 void DisplayDevice::disconnect(HWComposer& hwc) { argument
140 hwc.disconnectDisplay(mHwcDisplayId);
142 hwc.freeDisplayId(mHwcDisplayId);
205 status_t DisplayDevice::prepareFrame(const HWComposer& hwc) const {
207 bool haveGles = hwc.hasGlesComposition(mHwcDisplayId);
208 bool haveHwc = hwc.hasHwcComposition(mHwcDisplayId);
224 void DisplayDevice::swapBuffers(HWComposer& hwc) const {
231 if (hwc.initCheck() != NO_ERROR ||
232 (hwc.hasGlesComposition(mHwcDisplayId) &&
233 (hwc
[all...]
H A DLayer.cpp918 const HWComposer& hwc = mFlinger->getHwComposer(); local
919 sp<Fence> presentFence = hwc.getDisplayFence(HWC_DISPLAY_PRIMARY);
925 nsecs_t presentTime = hwc.getRefreshTimestamp(HWC_DISPLAY_PRIMARY);
H A DSurfaceFlinger.cpp671 const HWComposer& hwc(getHwComposer());
672 float xdpi = hwc.getDpiX(type);
673 float ydpi = hwc.getDpiY(type);
718 info->w = hwc.getWidth(type);
719 info->h = hwc.getHeight(type);
722 info->fps = float(1e9 / hwc.getRefreshPeriod(type));
938 HWComposer& hwc(getHwComposer());
939 if (hwc.initCheck() == NO_ERROR) {
940 status_t err = hwc.prepare();
968 const HWComposer& hwc local
[all...]

Completed in 99 milliseconds