summaryrefslogtreecommitdiff
path: root/chromium/ui/gfx/ozone/dri/dri_vsync_provider.cc
blob: b5717e686f1d229ba1d78d63864ef91f09588b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gfx/ozone/dri/dri_vsync_provider.h"

#include "base/time/time.h"
#include "ui/gfx/ozone/dri/hardware_display_controller.h"

namespace gfx {

DriVSyncProvider::DriVSyncProvider(HardwareDisplayController* controller)
    : controller_(controller) {}

DriVSyncProvider::~DriVSyncProvider() {}

void DriVSyncProvider::GetVSyncParameters(const UpdateVSyncCallback& callback) {
  // The value is invalid, so we can't update the parameters.
  if (controller_->get_time_of_last_flip() == 0)
    return;

  // Stores the time of the last refresh.
  base::TimeTicks timebase =
      base::TimeTicks::FromInternalValue(controller_->get_time_of_last_flip());
  // Stores the refresh rate.
  base::TimeDelta interval =
      base::TimeDelta::FromSeconds(1) / controller_->get_mode().vrefresh;

  callback.Run(timebase, interval);
}

}  // namespace gfx