Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_EVENT_WORKER_H_ |
| 18 | #define ANDROID_EVENT_WORKER_H_ |
| 19 | |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 20 | #include <hardware/hardware.h> |
| 21 | #include <hardware/hwcomposer.h> |
Roman Stratiienko | 2370109 | 2020-09-26 02:08:41 +0300 | [diff] [blame] | 22 | #include <hardware/hwcomposer2.h> |
Roman Stratiienko | aa3cd54 | 2020-08-29 11:26:16 +0300 | [diff] [blame] | 23 | |
Roman Stratiienko | d21071f | 2021-03-09 21:56:50 +0200 | [diff] [blame] | 24 | #include <atomic> |
Roman Stratiienko | e78235c | 2021-12-23 17:36:12 +0200 | [diff] [blame^] | 25 | #include <cstdint> |
Roman Stratiienko | 863a3c2 | 2021-09-29 13:00:29 +0300 | [diff] [blame] | 26 | #include <functional> |
Roman Stratiienko | aa3cd54 | 2020-08-29 11:26:16 +0300 | [diff] [blame] | 27 | #include <map> |
| 28 | |
Roman Stratiienko | 13cc366 | 2020-08-29 21:35:39 +0300 | [diff] [blame] | 29 | #include "DrmDevice.h" |
| 30 | #include "utils/Worker.h" |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 31 | |
| 32 | namespace android { |
| 33 | |
| 34 | class VSyncWorker : public Worker { |
| 35 | public: |
| 36 | VSyncWorker(); |
Roman Stratiienko | e2f2c92 | 2021-02-13 10:57:47 +0200 | [diff] [blame] | 37 | ~VSyncWorker() override = default; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 38 | |
Roman Stratiienko | 863a3c2 | 2021-09-29 13:00:29 +0300 | [diff] [blame] | 39 | auto Init(DrmDevice *drm, int display, |
| 40 | std::function<void(uint64_t /*timestamp*/)> callback) -> int; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 41 | |
Adrian Salido | fa37f67 | 2017-02-16 10:29:46 -0800 | [diff] [blame] | 42 | void VSyncControl(bool enabled); |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 43 | |
| 44 | protected: |
Haixia Shi | 479412c | 2015-10-27 10:40:48 -0700 | [diff] [blame] | 45 | void Routine() override; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 46 | |
| 47 | private: |
Roman Stratiienko | e2f2c92 | 2021-02-13 10:57:47 +0200 | [diff] [blame] | 48 | int64_t GetPhasedVSync(int64_t frame_ns, int64_t current) const; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 49 | int SyntheticWaitVBlank(int64_t *timestamp); |
| 50 | |
Alexandru Gheorghe | 0f5abd7 | 2018-05-01 14:37:10 +0100 | [diff] [blame] | 51 | DrmDevice *drm_; |
Sean Paul | a5df1de | 2016-02-10 10:00:08 -0800 | [diff] [blame] | 52 | |
Roman Stratiienko | 863a3c2 | 2021-09-29 13:00:29 +0300 | [diff] [blame] | 53 | std::function<void(uint64_t /*timestamp*/)> callback_; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 54 | |
| 55 | int display_; |
Roman Kovalivskyi | 521a4c8 | 2020-01-03 20:26:45 +0200 | [diff] [blame] | 56 | std::atomic_bool enabled_; |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 57 | int64_t last_timestamp_; |
| 58 | }; |
Sean Paul | f72cccd | 2018-08-27 13:59:08 -0400 | [diff] [blame] | 59 | } // namespace android |
Sean Paul | 4057be3 | 2015-05-13 06:23:09 -0700 | [diff] [blame] | 60 | |
| 61 | #endif |