Lines Matching refs:hwcContents
1360 Error HWC2On1Adapter::Display::set(hwc_display_contents_1& hwcContents) in set() argument
1370 auto numLayers = hwcContents.numHwLayers; in set()
1375 auto& layer = hwcContents.hwLayers[l]; in set()
1383 auto& clientTargetLayer = hwcContents.hwLayers[numLayers - 1]; in set()
1404 const hwc_display_contents_1_t& hwcContents) in addReleaseFences() argument
1408 size_t numLayers = hwcContents.numHwLayers; in addReleaseFences()
1410 const auto& receivedLayer = hwcContents.hwLayers[hwc1Id]; in addReleaseFences()
1591 static std::string to_string(const hwc_display_contents_1_t& hwcContents, in to_string() argument
1598 ((hwcContents.flags & HWC_GEOMETRY_CHANGED) != 0 ? "Y\n" : "N\n"); in to_string()
1600 output << fill << hwcContents.numHwLayers << " Layer" << in to_string()
1601 ((hwcContents.numHwLayers == 1) ? "\n" : "s\n"); in to_string()
1602 for (size_t layer = 0; layer < hwcContents.numHwLayers; ++layer) { in to_string()
1604 output << to_string(hwcContents.hwLayers[layer], hwc1MinorVersion); in to_string()
1607 if (hwcContents.outbuf != nullptr) { in to_string()
1608 output << fill << "Output buffer: " << hwcContents.outbuf << "/" << in to_string()
1609 hwcContents.outbufAcquireFenceFd << '\n'; in to_string()