Merge "hwc: Clean up scattered definitions of commonly used constants/values"
This commit is contained in:
committed by
Gerrit - the friendly Code Review server
commit
b676dc16ca
@@ -488,8 +488,8 @@ void getAspectRatioPosition(hwc_context_t* ctx, int dpy, int extOrientation,
|
||||
if(extOrientation & HAL_TRANSFORM_ROT_90) {
|
||||
// Swap width/height for input position
|
||||
swapWidthHeight(actualWidth, actualHeight);
|
||||
getAspectRatioPosition((int)fbWidth, (int)fbHeight, (int)actualWidth,
|
||||
(int)actualHeight, rect);
|
||||
qdutils::getAspectRatioPosition((int)fbWidth, (int)fbHeight,
|
||||
(int)actualWidth, (int)actualHeight, rect);
|
||||
xPos = rect.left;
|
||||
yPos = rect.top;
|
||||
width = float(rect.right - rect.left);
|
||||
@@ -520,7 +520,7 @@ void getAspectRatioPosition(hwc_context_t* ctx, int dpy, int extOrientation,
|
||||
xRatio = (float)(outPos.x - xPos)/width;
|
||||
// GetaspectRatio -- tricky to get the correct aspect ratio
|
||||
// But we need to do this.
|
||||
getAspectRatioPosition((int)width, (int)height,
|
||||
qdutils::getAspectRatioPosition((int)width, (int)height,
|
||||
(int)width,(int)height, r);
|
||||
xPos = r.left;
|
||||
yPos = r.top;
|
||||
@@ -603,7 +603,7 @@ void calcExtDisplayPosition(hwc_context_t *ctx,
|
||||
if(!isPrimaryPortrait(ctx)) {
|
||||
swap(srcWidth, srcHeight);
|
||||
} // Get Aspect Ratio for external
|
||||
getAspectRatioPosition(dstWidth, dstHeight, srcWidth,
|
||||
qdutils::getAspectRatioPosition(dstWidth, dstHeight, srcWidth,
|
||||
srcHeight, displayFrame);
|
||||
// Crop - this is needed, because for sidesync, the dest fb will
|
||||
// be in portrait orientation, so update the crop to not show the
|
||||
|
||||
Reference in New Issue
Block a user