Lines Matching defs:displayHeight

101     uint32_t displayHeight = modes->height_;
107 static_cast<int32_t>(boundingRect.height_) + boundingRect.posY_ > static_cast<int32_t>(displayHeight) ||
108 boundingRect.width_ > displayWidth || boundingRect.height_ > displayHeight ||
174 uint32_t displayHeight = modes->height_;
178 (top > displayHeight / 2) || (bottom > displayHeight / 2)) { // invalid if more than 1/2 height
185 displayHeight, displayWidth);
189 Rotation rotation, uint32_t displayHeight, uint32_t displayWidth)
197 DMRect leftRect = CreateWaterfallRect(0, 0, left, displayHeight);
199 DMRect rightRect = CreateWaterfallRect(displayWidth - right, 0, right, displayHeight);
200 DMRect bottomRect = CreateWaterfallRect(0, displayHeight - bottom, displayWidth, bottom);
206 DMRect topRect = CreateWaterfallRect(0, 0, displayHeight, left);
207 DMRect rightRect = CreateWaterfallRect(displayHeight - top, 0, top, displayWidth);
208 DMRect bottomRect = CreateWaterfallRect(0, displayWidth - right, displayHeight, right);
213 DMRect leftRect = CreateWaterfallRect(0, 0, right, displayHeight);
215 DMRect rightRect = CreateWaterfallRect(displayWidth - left, 0, left, displayHeight);
216 DMRect bottomRect = CreateWaterfallRect(0, displayHeight - top, displayWidth, top);
222 DMRect topRect = CreateWaterfallRect(0, 0, displayHeight, right);
223 DMRect rightRect = CreateWaterfallRect(displayHeight - bottom, 0, bottom, displayWidth);
224 DMRect bottomRect = CreateWaterfallRect(0, displayWidth - left, displayHeight, left);
262 uint32_t displayHeight = modes->height_;
267 CurrentRotation90(resultVec, displayBoundingRects, displayHeight);
271 CurrentRotation180(resultVec, displayBoundingRects, displayHeight, displayWidth);
288 std::vector<DMRect> displayBoundingRects, uint32_t displayHeight)
291 resultVec.emplace_back(DMRect {.posX_ = displayHeight - rect.posY_ - rect.height_,
297 std::vector<DMRect> displayBoundingRects, uint32_t displayHeight, uint32_t displayWidth)
301 displayHeight - rect.posY_ - rect.height_, rect.width_, rect.height_});