Home | History | Annotate | Download | only in hwc2

Lines Matching refs:refresh_rate

1614   uint32_t refresh_rate = req_refresh_rate;
1616 if (refresh_rate < min_refresh_rate_) {
1618 refresh_rate =
1619 (((min_refresh_rate_ / refresh_rate) + ((min_refresh_rate_ % refresh_rate) ? 1 : 0)) *
1620 refresh_rate);
1623 if (refresh_rate > max_refresh_rate_) {
1624 refresh_rate = max_refresh_rate_;
1627 return refresh_rate;