2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2014-12-18 19:30:06 +03:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2015-01-09 02:12:47 +03:00
|
|
|
#ifndef GFX_VSYNCSOURCE_H
|
|
|
|
#define GFX_VSYNCSOURCE_H
|
|
|
|
|
2015-01-13 16:04:00 +03:00
|
|
|
#include "nsTArray.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2015-01-13 16:04:00 +03:00
|
|
|
#include "mozilla/Mutex.h"
|
2014-12-18 19:30:06 +03:00
|
|
|
#include "mozilla/TimeStamp.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
2018-12-08 02:27:28 +03:00
|
|
|
#include "mozilla/layers/LayersTypes.h"
|
2014-12-18 19:30:06 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
2015-01-13 16:04:00 +03:00
|
|
|
class RefreshTimerVsyncDispatcher;
|
2014-12-19 23:52:42 +03:00
|
|
|
class CompositorVsyncDispatcher;
|
2014-12-18 19:30:06 +03:00
|
|
|
|
2018-12-08 02:27:28 +03:00
|
|
|
class VsyncIdType {};
|
|
|
|
typedef layers::BaseTransactionId<VsyncIdType> VsyncId;
|
|
|
|
|
2014-12-18 19:30:06 +03:00
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
// Controls how and when to enable/disable vsync. Lives as long as the
|
|
|
|
// gfxPlatform does on the parent process
|
|
|
|
class VsyncSource {
|
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(VsyncSource)
|
2015-01-13 16:04:00 +03:00
|
|
|
|
|
|
|
typedef mozilla::RefreshTimerVsyncDispatcher RefreshTimerVsyncDispatcher;
|
|
|
|
typedef mozilla::CompositorVsyncDispatcher CompositorVsyncDispatcher;
|
|
|
|
|
2014-12-18 19:30:06 +03:00
|
|
|
public:
|
|
|
|
// Controls vsync unique to each display and unique on each platform
|
|
|
|
class Display {
|
|
|
|
public:
|
|
|
|
Display();
|
|
|
|
virtual ~Display();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-01-09 02:12:47 +03:00
|
|
|
// Notified when this display's vsync occurs, on the vsync thread
|
2015-01-09 11:37:00 +03:00
|
|
|
// The aVsyncTimestamp should normalize to the Vsync time that just occured
|
|
|
|
// However, different platforms give different vsync notification times.
|
|
|
|
// OSX - The vsync timestamp of the upcoming frame, in the future
|
2015-11-06 19:20:58 +03:00
|
|
|
// Windows: It's messy, see gfxWindowsPlatform.
|
2015-01-09 11:37:00 +03:00
|
|
|
// Android: TODO
|
|
|
|
// All platforms should normalize to the vsync that just occured.
|
|
|
|
// Large parts of Gecko assume TimeStamps should not be in the future such
|
|
|
|
// as animations
|
2015-01-13 16:04:00 +03:00
|
|
|
virtual void NotifyVsync(TimeStamp aVsyncTimestamp);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<RefreshTimerVsyncDispatcher> GetRefreshTimerVsyncDispatcher();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-01-13 16:04:00 +03:00
|
|
|
void AddCompositorVsyncDispatcher(
|
|
|
|
CompositorVsyncDispatcher* aCompositorVsyncDispatcher);
|
|
|
|
void RemoveCompositorVsyncDispatcher(
|
|
|
|
CompositorVsyncDispatcher* aCompositorVsyncDispatcher);
|
2018-12-14 23:16:23 +03:00
|
|
|
void MoveListenersToNewSource(VsyncSource::Display& aNewDisplay);
|
2015-01-20 19:31:24 +03:00
|
|
|
void NotifyRefreshTimerVsyncStatus(bool aEnable);
|
2015-11-06 19:20:58 +03:00
|
|
|
virtual TimeDuration GetVsyncRate();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-12-18 19:30:06 +03:00
|
|
|
// These should all only be called on the main thread
|
|
|
|
virtual void EnableVsync() = 0;
|
|
|
|
virtual void DisableVsync() = 0;
|
|
|
|
virtual bool IsVsyncEnabled() = 0;
|
2016-06-06 20:07:29 +03:00
|
|
|
virtual void Shutdown() = 0;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-12-18 19:30:06 +03:00
|
|
|
private:
|
2015-01-20 19:31:24 +03:00
|
|
|
void UpdateVsyncStatus();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-01-13 16:04:00 +03:00
|
|
|
Mutex mDispatcherLock;
|
2015-01-20 19:31:24 +03:00
|
|
|
bool mRefreshTimerNeedsVsync;
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<CompositorVsyncDispatcher>> mCompositorVsyncDispatchers;
|
|
|
|
RefPtr<RefreshTimerVsyncDispatcher> mRefreshTimerVsyncDispatcher;
|
2018-12-08 02:27:28 +03:00
|
|
|
VsyncId mVsyncId;
|
2015-01-13 16:04:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void AddCompositorVsyncDispatcher(
|
|
|
|
CompositorVsyncDispatcher* aCompositorVsyncDispatcher);
|
|
|
|
void RemoveCompositorVsyncDispatcher(
|
|
|
|
CompositorVsyncDispatcher* aCompositorVsyncDispatcher);
|
2014-12-18 19:30:06 +03:00
|
|
|
|
2018-12-14 23:16:23 +03:00
|
|
|
void MoveListenersToNewSource(VsyncSource* aNewSource);
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<RefreshTimerVsyncDispatcher> GetRefreshTimerVsyncDispatcher();
|
2014-12-18 19:30:06 +03:00
|
|
|
virtual Display& GetGlobalDisplay() = 0; // Works across all displays
|
2016-06-06 20:07:29 +03:00
|
|
|
void Shutdown();
|
2015-01-13 16:04:00 +03:00
|
|
|
|
2015-01-15 18:56:12 +03:00
|
|
|
protected:
|
2019-04-11 15:36:51 +03:00
|
|
|
virtual ~VsyncSource() = default;
|
2015-01-13 16:04:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gfx
|
2018-12-08 02:27:28 +03:00
|
|
|
|
|
|
|
struct VsyncEvent {
|
|
|
|
VsyncId mId;
|
|
|
|
TimeStamp mTime;
|
|
|
|
|
|
|
|
VsyncEvent(const VsyncId& aId, const TimeStamp& aTime)
|
|
|
|
: mId(aId), mTime(aTime) {}
|
|
|
|
VsyncEvent() {}
|
|
|
|
};
|
|
|
|
|
2015-01-13 16:04:00 +03:00
|
|
|
} // namespace mozilla
|
2015-01-09 02:12:47 +03:00
|
|
|
|
|
|
|
#endif /* GFX_VSYNCSOURCE_H */
|