Home
last modified time | relevance | path

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

/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/
DAutoFitTextureView.java28 private int mRatioWidth = 0; field in AutoFitTextureView
55 mRatioWidth = width; 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()