Lines Matching refs:hwcContents
1272 Error HWC2On1Adapter::Display::set(hwc_display_contents_1& hwcContents) { in set() argument
1281 auto numLayers = hwcContents.numHwLayers; in set()
1286 auto& layer = hwcContents.hwLayers[l]; in set()
1294 auto& clientTargetLayer = hwcContents.hwLayers[numLayers - 1]; in set()
1314 const hwc_display_contents_1_t& hwcContents) { in addReleaseFences() argument
1317 size_t numLayers = hwcContents.numHwLayers; in addReleaseFences()
1319 const auto& receivedLayer = hwcContents.hwLayers[hwc1Id]; in addReleaseFences()
1490 static std::string to_string(const hwc_display_contents_1_t& hwcContents, in to_string() argument
1496 ((hwcContents.flags & HWC_GEOMETRY_CHANGED) != 0 ? "Y\n" : "N\n"); in to_string()
1498 output << fill << hwcContents.numHwLayers << " Layer" << in to_string()
1499 ((hwcContents.numHwLayers == 1) ? "\n" : "s\n"); in to_string()
1500 for (size_t layer = 0; layer < hwcContents.numHwLayers; ++layer) { in to_string()
1502 output << to_string(hwcContents.hwLayers[layer], hwc1MinorVersion); in to_string()
1505 if (hwcContents.outbuf != nullptr) { in to_string()
1506 output << fill << "Output buffer: " << hwcContents.outbuf << "/" << in to_string()
1507 hwcContents.outbufAcquireFenceFd << '\n'; in to_string()