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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_ANDROID_ANDROID_SURFACE_CONTROL_COMPAT_H_
#define UI_GFX_ANDROID_ANDROID_SURFACE_CONTROL_COMPAT_H_
#include <android/hardware_buffer.h>
#include <android/native_window.h>
#include <memory>
#include <optional>
#include <vector>
#include "base/android/scoped_java_ref.h"
#include "base/component_export.h"
#include "base/files/scoped_file.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/task/single_thread_task_runner.h"
#include "base/time/time.h"
#include "ui/gfx/android/surface_control_frame_rate.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/hdr_metadata.h"
#include "ui/gfx/overlay_transform.h"
extern "C" {
typedef struct ASurfaceControl ASurfaceControl;
typedef struct ASurfaceTransaction ASurfaceTransaction;
}
namespace gfx {
class ColorSpace;
class COMPONENT_EXPORT(GFX) SurfaceControl {
public:
// Check if the platform is capable of supporting the low-level SurfaceControl
// API. See also gpu/config/gpu_util's GetAndroidSurfaceControlFeatureStatus
// which checks other prerequisites such as Gpufence support before declaring
// support for the high-level SurfaceControl feature in Chrome.
static bool IsSupported();
// Returns true if overlays with |color_space| are supported by the platform.
static bool SupportsColorSpace(const gfx::ColorSpace& color_space);
// Translate `color_space` and `desired_brightness_ratio` to an ADataSpace and
// extended range brightness ratio.
static bool ColorSpaceToADataSpace(
const gfx::ColorSpace& color_space,
float desired_brightness_ratio,
ADataSpace& out_dataspace,
float& out_extended_range_brightness_ratio);
// Returns the usage flags required for using an AHardwareBuffer with the
// SurfaceControl API, if it is supported.
static uint64_t RequiredUsage();
// Enables usage bits requires for getting UBWC on Qualcomm devices. Must be
// called early at process startup, before any buffer allocations are made.
static void EnableQualcommUBWC();
// Returns true if tagging a surface with a frame rate value is supported.
static bool SupportsSetFrameRate();
// Returns true if OnCommit callback is supported.
static bool SupportsOnCommit();
// kAtLeast will be treated as kFixedSource when not supported.
static bool SupportsFrameRateCompatAtLeast();
// Returns true if tagging a transaction with vsync id is supported.
static COMPONENT_EXPORT(GFX) bool SupportsSetFrameTimeline();
// Returns true if APIs to convert Java SurfaceControl to ASurfaceControl.
static COMPONENT_EXPORT(GFX) bool SupportsSurfacelessControl();
// Returns true if API to enable back pressure is supported.
static COMPONENT_EXPORT(GFX) bool SupportsSetEnableBackPressure();
// Applies transaction. Used to emulate webview functor interface, where we
// pass raw ASurfaceTransaction object. For use inside Chromium use
// Transaction class below instead.
static void ApplyTransaction(ASurfaceTransaction* transaction);
static void SetStubImplementationForTesting();
class COMPONENT_EXPORT(GFX) Surface : public base::RefCounted<Surface> {
public:
// Wraps ASurfaceControl, but doesn't transfer ownership. Will not release
// in dtor.
static scoped_refptr<Surface> WrapUnowned(ASurfaceControl* surface);
Surface();
Surface(const Surface& parent, const char* name);
Surface(ANativeWindow* parent, const char* name);
Surface(JNIEnv* env,
const base::android::JavaRef<jobject>& j_surface_control);
Surface(const Surface&) = delete;
Surface& operator=(const Surface&) = delete;
ASurfaceControl* surface() const { return surface_; }
private:
friend class base::RefCounted<Surface>;
~Surface();
raw_ptr<ASurfaceControl> surface_ = nullptr;
raw_ptr<ASurfaceControl> owned_surface_ = nullptr;
};
struct COMPONENT_EXPORT(GFX) SurfaceStats {
SurfaceStats();
~SurfaceStats();
SurfaceStats(SurfaceStats&& other);
SurfaceStats& operator=(SurfaceStats&& other);
raw_ptr<ASurfaceControl> surface = nullptr;
// The fence which is signaled when the reads for the previous buffer for
// the given |surface| are finished.
base::ScopedFD fence;
};
struct COMPONENT_EXPORT(GFX) TransactionStats {
public:
TransactionStats();
TransactionStats(const TransactionStats&) = delete;
TransactionStats& operator=(const TransactionStats&) = delete;
~TransactionStats();
TransactionStats(TransactionStats&& other);
TransactionStats& operator=(TransactionStats&& other);
// The fence which is signaled when this transaction is presented by the
// display.
base::ScopedFD present_fence;
std::vector<SurfaceStats> surface_stats;
base::TimeTicks latch_time;
};
class COMPONENT_EXPORT(GFX) Transaction {
public:
Transaction();
Transaction(const Transaction&) = delete;
Transaction& operator=(const Transaction&) = delete;
~Transaction();
Transaction(Transaction&& other);
Transaction& operator=(Transaction&& other);
void SetVisibility(const Surface& surface, bool show);
void SetZOrder(const Surface& surface, int32_t z);
void SetBuffer(const Surface& surface,
AHardwareBuffer* buffer,
base::ScopedFD fence_fd);
void SetGeometry(const Surface& surface,
const gfx::Rect& src,
const gfx::Rect& dst,
gfx::OverlayTransform transform);
void SetOpaque(const Surface& surface, bool opaque);
void SetDamageRect(const Surface& surface, const gfx::Rect& rect);
void SetColorSpace(const Surface& surface,
const gfx::ColorSpace& color_space,
const std::optional<HDRMetadata>& metadata);
void SetFrameRate(const Surface& surface,
SurfaceControlFrameRate frame_rate);
void SetParent(const Surface& surface, Surface* new_parent);
void SetPosition(const Surface& surface, const gfx::Point& position);
void SetScale(const Surface& surface, float sx, float sy);
void SetCrop(const Surface& surface, const gfx::Rect& rect);
void SetFrameTimelineId(int64_t vsync_id);
void SetEnableBackPressure(const Surface& surface, bool enable);
// Sets the callback which will be dispatched when the transaction is acked
// by the framework.
// |task_runner| provides an optional task runner on which the callback
// should be run.
using OnCompleteCb = base::OnceCallback<void(TransactionStats stats)>;
void SetOnCompleteCb(
OnCompleteCb cb,
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
using OnCommitCb = base::OnceClosure;
void SetOnCommitCb(OnCommitCb cb,
scoped_refptr<base::SingleThreadTaskRunner> task_runner);
void Apply();
// Caller(e.g.,WebView) must call ASurfaceTransaction_apply(), otherwise
// SurfaceControl leaks.
ASurfaceTransaction* GetTransaction();
private:
void PrepareCallbacks();
void DestroyIfNeeded();
int id_;
raw_ptr<ASurfaceTransaction> transaction_;
OnCommitCb on_commit_cb_;
OnCompleteCb on_complete_cb_;
bool need_to_apply_ = false;
};
};
} // namespace gfx
#endif // UI_GFX_ANDROID_ANDROID_SURFACE_CONTROL_COMPAT_H_
|