blob: 11bcdb8996e2df87a6f4428c8fd58bcf5c37178c [file] [log] [blame]
Ana Krulec70d15b1b2020-12-01 10:05:15 -08001/*
2 * Copyright 2020 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#include "CaptureTimer.h"
18
19#undef LOG_TAG
20#define LOG_TAG "RenderEngine"
21#define ATRACE_TAG ATRACE_TAG_GRAPHICS
22
23#include "CommonPool.h"
24
25#include <thread>
26
27namespace android {
28namespace renderengine {
29namespace skia {
30
31void CaptureTimer::setTimeout(TimeoutCallback function, std::chrono::milliseconds delay) {
32 this->clear = false;
33 CommonPool::post([=]() {
34 if (this->clear) return;
35 std::this_thread::sleep_for(delay);
36 if (this->clear) return;
37 function();
38 });
39}
40
41void CaptureTimer::stop() {
42 this->clear = true;
43}
44
45} // namespace skia
46} // namespace renderengine
47} // namespace android