forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgl_fence_android_native_fence_sync.h
42 lines (30 loc) · 1.24 KB
/
gl_fence_android_native_fence_sync.h
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
33
34
35
36
37
38
39
40
41
42
// Copyright 2017 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.
#ifndef UI_GL_GL_FENCE_ANDROID_NATIVE_FENCE_SYNC_H_
#define UI_GL_GL_FENCE_ANDROID_NATIVE_FENCE_SYNC_H_
#include "base/files/scoped_file.h"
#include "base/macros.h"
#include "build/build_config.h"
#include "ui/gl/gl_export.h"
#include "ui/gl/gl_fence_egl.h"
namespace gl {
class GL_EXPORT GLFenceAndroidNativeFenceSync : public GLFenceEGL {
public:
~GLFenceAndroidNativeFenceSync() override;
static std::unique_ptr<GLFenceAndroidNativeFenceSync> CreateForGpuFence();
static std::unique_ptr<GLFenceAndroidNativeFenceSync> CreateFromGpuFence(
const gfx::GpuFence&);
std::unique_ptr<gfx::GpuFence> GetGpuFence() override;
// This is a best effort to get status change time. It might fail and a null
// TimeTicks will be returned in that case.
base::TimeTicks GetStatusChangeTime();
private:
GLFenceAndroidNativeFenceSync();
static std::unique_ptr<GLFenceAndroidNativeFenceSync> CreateInternal(
EGLenum type,
EGLint* attribs);
DISALLOW_COPY_AND_ASSIGN(GLFenceAndroidNativeFenceSync);
};
} // namespace gl
#endif // UI_GL_GL_FENCE_ANDROID_NATIVE_FENCE_SYNC_H_