Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DScreenMediaRecorder.java227 int screenWidthAligned = screenWidth; in getSupportedSize() local
228 if (screenWidthAligned % vc.getWidthAlignment() != 0) { in getSupportedSize()
229 screenWidthAligned -= (screenWidthAligned % vc.getWidthAlignment()); in getSupportedSize()
236 if (width >= screenWidthAligned && height >= screenHeightAligned in getSupportedSize()
237 && vc.isSizeSupported(screenWidthAligned, screenHeightAligned)) { in getSupportedSize()
239 int maxRate = vc.getSupportedFrameRatesFor(screenWidthAligned, in getSupportedSize()
246 return new int[]{screenWidthAligned, screenHeightAligned, refreshRate}; in getSupportedSize()