Home
last modified time | relevance | path

Searched refs:propIntParts (Results 1 – 2 of 2) sorted by relevance

/device/generic/goldfish-opengl/system/hwc3/
DDisplayFinder.cpp109 std::vector<int> propIntParts; in parseExternalDisplaysFromProperties() local
117 propIntParts.push_back(propIntPart); in parseExternalDisplaysFromProperties()
119 if (propIntParts.empty() || propIntParts.size() % 5 != 0) { in parseExternalDisplaysFromProperties()
122 outPropIntParts.insert(outPropIntParts.end(), propIntParts.begin(), propIntParts.end()); in parseExternalDisplaysFromProperties()
129 std::vector<int> propIntParts; in findGoldfishSecondaryDisplays() local
130 parseExternalDisplaysFromProperties(propIntParts); in findGoldfishSecondaryDisplays()
133 while (!propIntParts.empty()) { in findGoldfishSecondaryDisplays()
138 /*width=*/propIntParts[1], // in findGoldfishSecondaryDisplays()
139 /*heighth=*/propIntParts[2], // in findGoldfishSecondaryDisplays()
140 /*dpiXh=*/propIntParts[3], // in findGoldfishSecondaryDisplays()
[all …]
DGuestFrameComposer.cpp537 std::vector<int> propIntParts; in getDisplayConfigsFromSystemProp() local
538 parseExternalDisplaysFromProperties(propIntParts); in getDisplayConfigsFromSystemProp()
540 while (!propIntParts.empty()) { in getDisplayConfigsFromSystemProp()
542 .width = propIntParts[1], in getDisplayConfigsFromSystemProp()
543 .height = propIntParts[2], in getDisplayConfigsFromSystemProp()
544 .dpiX = propIntParts[3], in getDisplayConfigsFromSystemProp()
545 .dpiY = propIntParts[3], in getDisplayConfigsFromSystemProp()
551 propIntParts.erase(propIntParts.begin(), propIntParts.begin() + 5); in getDisplayConfigsFromSystemProp()