Merge "Add supported refresh rates for all DisplayDeviceInfos." into lmp-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
4d1bb519db
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user