Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d1bb519 authored by Michael Wright's avatar Michael Wright Committed by Android (Google) Code Review
Browse files

Merge "Add supported refresh rates for all DisplayDeviceInfos." into lmp-mr1-dev

parents 4cb7274d 6f59a7ac
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -248,6 +248,7 @@ final class OverlayDisplayAdapter extends DisplayAdapter {
                mInfo.width = mWidth;
                mInfo.height = mHeight;
                mInfo.refreshRate = mRefreshRate;
                mInfo.supportedRefreshRates = new float[] { mRefreshRate };
                mInfo.densityDpi = mDensityDpi;
                mInfo.xDpi = mDensityDpi;
                mInfo.yDpi = mDensityDpi;
+1 −0
Original line number Diff line number Diff line
@@ -257,6 +257,7 @@ final class VirtualDisplayAdapter extends DisplayAdapter {
                mInfo.width = mWidth;
                mInfo.height = mHeight;
                mInfo.refreshRate = 60;
                mInfo.supportedRefreshRates = new float[] { 60.0f };
                mInfo.densityDpi = mDensityDpi;
                mInfo.xDpi = mDensityDpi;
                mInfo.yDpi = mDensityDpi;
+1 −0
Original line number Diff line number Diff line
@@ -625,6 +625,7 @@ final class WifiDisplayAdapter extends DisplayAdapter {
                mInfo.width = mWidth;
                mInfo.height = mHeight;
                mInfo.refreshRate = mRefreshRate;
                mInfo.supportedRefreshRates = new float[] { mRefreshRate };
                mInfo.presentationDeadlineNanos = 1000000000L / (int) mRefreshRate; // 1 frame
                mInfo.flags = mFlags;
                mInfo.type = Display.TYPE_WIFI;