Searched refs:min_fps (Results 1 – 3 of 3) sorted by relevance
90 void FrameRateCounter::GetMinAndMaxFPS(double* min_fps, double* max_fps) const { in GetMinAndMaxFPS() argument91 *min_fps = std::numeric_limits<double>::max(); in GetMinAndMaxFPS()103 *min_fps = std::min(fps, *min_fps); in GetMinAndMaxFPS()107 if (*min_fps > *max_fps) in GetMinAndMaxFPS()108 *min_fps = *max_fps; in GetMinAndMaxFPS()
37 void GetMinAndMaxFPS(double* min_fps, double* max_fps) const;
1326 int min_fps = suppress_rendering ? in TEST_P() local1328 if (min_fps > 0 && !test_reuse_delay) in TEST_P()1329 EXPECT_GT(client->frames_per_second(), min_fps); in TEST_P()