Home
last modified time | relevance | path

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

/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/
DAutoFitTextureView.java29 private int mRatioHeight = 0; field in AutoFitTextureView
56 mRatioHeight = height; in setAspectRatio()
65 if (0 == mRatioWidth || 0 == mRatioHeight) { in onMeasure()
68 if (width < height * mRatioWidth / mRatioHeight) { in onMeasure()
69 setMeasuredDimension(width, width * mRatioHeight / mRatioWidth); in onMeasure()
71 setMeasuredDimension(height * mRatioWidth / mRatioHeight, height); in onMeasure()