Lines Matching refs:hwc
56 static uint32_t hwcApiVersion(const hwc_composer_device_1_t* hwc) { in hwcApiVersion() argument
57 uint32_t hwcVersion = hwc->common.version; in hwcApiVersion()
61 static uint32_t hwcHeaderVersion(const hwc_composer_device_1_t* hwc) { in hwcHeaderVersion() argument
62 uint32_t hwcVersion = hwc->common.version; in hwcHeaderVersion()
66 static bool hwcHasApiVersion(const hwc_composer_device_1_t* hwc, in hwcHasApiVersion() argument
68 return hwcApiVersion(hwc) >= (version & HARDWARE_API_VERSION_2_MAJ_MIN_MASK); in hwcHasApiVersion()
81 HWComposer* hwc; member
140 mCBContext->hwc = this; in HWComposer()
262 ctx->hwc->invalidate(); in hook_invalidate()
269 ctx->hwc->vsync(disp, timestamp); in hook_vsync()
276 ctx->hwc->hotplug(disp, connected); in hook_hotplug()
961 HWCLayerVersion1(struct hwc_composer_device_1* hwc, hwc_layer_1_t* layer, in HWCLayerVersion1() argument
964 : Iterable<HWCLayerVersion1, hwc_layer_1_t>(layer), mHwc(hwc), in HWCLayerVersion1()
1274 HWComposer::VSyncThread::VSyncThread(HWComposer& hwc) in VSyncThread() argument
1275 : mHwc(hwc), mEnabled(false), in VSyncThread()
1277 mRefreshPeriod(hwc.getRefreshPeriod(HWC_DISPLAY_PRIMARY)) in VSyncThread()