blob: 4fa25b70b38c314cc18f684378ed376583223f4c [file] [log] [blame]
Keith Davis33ed2212020-03-30 10:43:41 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
Cathal Corbett5aa9fd72022-02-25 15:33:28 +00008namespace arm
Keith Davis33ed2212020-03-30 10:43:41 +01009{
10
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000011namespace pipe
Keith Davis33ed2212020-03-30 10:43:41 +010012{
13
14class INotifyBackends
15{
16public:
17 virtual ~INotifyBackends() {}
18 virtual void NotifyBackendsForTimelineReporting() = 0;
19};
20
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000021} // namespace pipe
Keith Davis33ed2212020-03-30 10:43:41 +010022
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000023} // namespace arm
Keith Davis33ed2212020-03-30 10:43:41 +010024