Home
last modified time | relevance | path

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

/cts/hostsidetests/graphics/framerateoverride/app/src/com/android/cts/graphics/framerateoverride/
DFrameRateOverrideTestActivity.java276 void observe(float initialRefreshRate, float expectedFrameRate, String condition) in observe() argument
282 public void observe(float initialRefreshRate, float expectedFrameRate, String condition) { in observe() argument
292 if (frameRatesMatchesOverride(fps, expectedFrameRate)) { in observe()
305 + "expected: %.2f observed: %.2f", condition, expectedFrameRate, fps), in observe()
306 frameRatesMatchesOverride(fps, expectedFrameRate)); in observe()
372 public void observe(float initialRefreshRate, float expectedFrameRate, String condition) in observe() argument
374 ChoreographerThread thread = new ChoreographerThread(expectedFrameRate, condition); in observe()
383 public void observe(float initialRefreshRate, float expectedFrameRate, String condition) { in observe() argument
389 expectedFrameRate, mReportedDisplayRefreshRate), in observe()
390 frameRatesMatchesOverride(mReportedDisplayRefreshRate, expectedFrameRate)); in observe()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DFrameRateCtsActivity.java154 FrameRateTimeoutException(float expectedFrameRate, float deviceFrameRate) { in FrameRateTimeoutException() argument
155 this.expectedFrameRate = expectedFrameRate; in FrameRateTimeoutException()
159 public float expectedFrameRate; field in FrameRateCtsActivity.FrameRateTimeoutException
547 private void verifyCompatibleAndStableFrameRate(float expectedFrameRate, in verifyCompatibleAndStableFrameRate() argument
554 if (expectedFrameRate > FRAME_RATE_TOLERANCE) { // expectedFrameRate > 0 in verifyCompatibleAndStableFrameRate()
556 while (!isFrameRateMultiple(mDeviceFrameRate, expectedFrameRate) in verifyCompatibleAndStableFrameRate()
562 throw new FrameRateTimeoutException(expectedFrameRate, mDeviceFrameRate); in verifyCompatibleAndStableFrameRate()
650 exc.expectedFrameRate, exc.deviceFrameRate), in runTestsWithPreconditions()