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
212
213
214
|
/**
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// #define LOG_NDEBUG 0
#include <algorithm>
#include "HdrSdrRatioOverlay.h"
#include <SkSurface.h>
#undef LOG_TAG
#define LOG_TAG "HdrSdrRatioOverlay"
namespace android {
void HdrSdrRatioOverlay::drawNumber(float number, int left, SkColor color, SkCanvas& canvas) {
if (!isfinite(number) || number >= 10.f) return;
// We assume that the number range is [1.f, 10.f)
// and the decimal places are 2.
int value = static_cast<int>(number * 100);
SegmentDrawer::drawDigit(value / 100, left, color, canvas);
left += kDigitWidth + kDigitSpace;
SegmentDrawer::drawSegment(SegmentDrawer::Segment::DecimalPoint, left, color, canvas);
left += kDigitWidth + kDigitSpace;
SegmentDrawer::drawDigit((value / 10) % 10, left, color, canvas);
left += kDigitWidth + kDigitSpace;
SegmentDrawer::drawDigit(value % 10, left, color, canvas);
}
sp<GraphicBuffer> HdrSdrRatioOverlay::draw(float currentHdrSdrRatio, SkColor color,
ui::Transform::RotationFlags rotation,
sp<GraphicBuffer>& ringBuffer) {
const int32_t bufferWidth = kBufferWidth;
const int32_t bufferHeight = kBufferWidth;
const auto kUsageFlags = static_cast<uint64_t>(
GRALLOC_USAGE_SW_WRITE_RARELY | GRALLOC_USAGE_HW_COMPOSER | GRALLOC_USAGE_HW_TEXTURE);
// ring buffers here to do double-buffered rendering to avoid
// possible tearing and also to reduce memory take-up.
if (ringBuffer == nullptr) {
ringBuffer = sp<GraphicBuffer>::make(static_cast<uint32_t>(bufferWidth),
static_cast<uint32_t>(bufferHeight),
HAL_PIXEL_FORMAT_RGBA_8888, 1u, kUsageFlags,
"HdrSdrRatioOverlayBuffer");
}
auto& buffer = ringBuffer;
SkMatrix canvasTransform = SkMatrix();
switch (rotation) {
case ui::Transform::ROT_90:
canvasTransform.setTranslate(bufferHeight, 0);
canvasTransform.preRotate(90.f);
break;
case ui::Transform::ROT_270:
canvasTransform.setRotate(270.f, bufferWidth / 2.f, bufferWidth / 2.f);
break;
default:
break;
}
const status_t bufferStatus = buffer->initCheck();
LOG_ALWAYS_FATAL_IF(bufferStatus != OK, "HdrSdrRatioOverlay: Buffer failed to allocate: %d",
bufferStatus);
sk_sp<SkSurface> surface =
SkSurfaces::Raster(SkImageInfo::MakeN32Premul(bufferWidth, bufferHeight));
SkCanvas* canvas = surface->getCanvas();
canvas->setMatrix(canvasTransform);
drawNumber(currentHdrSdrRatio, 0, color, *canvas);
void* pixels = nullptr;
buffer->lock(GRALLOC_USAGE_SW_WRITE_RARELY, reinterpret_cast<void**>(&pixels));
const SkImageInfo& imageInfo = surface->imageInfo();
const size_t dstRowBytes = buffer->getStride() * static_cast<size_t>(imageInfo.bytesPerPixel());
canvas->readPixels(imageInfo, pixels, dstRowBytes, 0, 0);
buffer->unlock();
return buffer;
}
std::unique_ptr<HdrSdrRatioOverlay> HdrSdrRatioOverlay::create() {
std::unique_ptr<HdrSdrRatioOverlay> overlay =
std::make_unique<HdrSdrRatioOverlay>(ConstructorTag{});
if (overlay->initCheck()) {
return overlay;
}
ALOGE("%s: Failed to create HdrSdrRatioOverlay", __func__);
return {};
}
HdrSdrRatioOverlay::HdrSdrRatioOverlay(ConstructorTag)
: mSurfaceControl(
SurfaceControlHolder::createSurfaceControlHolder(String8("HdrSdrRatioOverlay"))) {
if (!mSurfaceControl) {
ALOGE("%s: Failed to create buffer state layer", __func__);
return;
}
createTransaction()
.setLayer(mSurfaceControl->get(), INT32_MAX - 2)
.setTrustedOverlay(mSurfaceControl->get(), true)
.apply();
}
bool HdrSdrRatioOverlay::initCheck() const {
return mSurfaceControl != nullptr;
}
void HdrSdrRatioOverlay::changeHdrSdrRatio(float currentHdrSdrRatio) {
mCurrentHdrSdrRatio = currentHdrSdrRatio;
animate();
}
void HdrSdrRatioOverlay::setLayerStack(ui::LayerStack stack) {
createTransaction().setLayerStack(mSurfaceControl->get(), stack).apply();
}
void HdrSdrRatioOverlay::setViewport(ui::Size viewport) {
constexpr int32_t kMaxWidth = 1000;
const auto width = std::min({kMaxWidth, viewport.width, viewport.height});
const auto height = 2 * width;
Rect frame((5 * width) >> 4, height >> 5);
// set the ratio frame to the top right of the screen
frame.offsetBy(viewport.width - frame.width(), height >> 4);
createTransaction()
.setMatrix(mSurfaceControl->get(), frame.getWidth() / static_cast<float>(kBufferWidth),
0, 0, frame.getHeight() / static_cast<float>(kBufferHeight))
.setPosition(mSurfaceControl->get(), frame.left, frame.top)
.apply();
}
auto HdrSdrRatioOverlay::getOrCreateBuffers(float currentHdrSdrRatio) -> const sp<GraphicBuffer> {
static const sp<GraphicBuffer> kNoBuffer;
if (!mSurfaceControl) return kNoBuffer;
const auto transformHint =
static_cast<ui::Transform::RotationFlags>(mSurfaceControl->get()->getTransformHint());
// Tell SurfaceFlinger about the pre-rotation on the buffer.
const auto transform = [&] {
switch (transformHint) {
case ui::Transform::ROT_90:
return ui::Transform::ROT_270;
case ui::Transform::ROT_270:
return ui::Transform::ROT_90;
default:
return ui::Transform::ROT_0;
}
}();
createTransaction().setTransform(mSurfaceControl->get(), transform).apply();
constexpr SkColor kMinRatioColor = SK_ColorBLUE;
constexpr SkColor kMaxRatioColor = SK_ColorGREEN;
constexpr float kAlpha = 0.8f;
// 9.f is picked here as ratio range, given that we assume that
// hdr/sdr ratio is [1.f, 10.f)
const float scale = currentHdrSdrRatio / 9.f;
SkColor4f colorBase = SkColor4f::FromColor(kMaxRatioColor) * scale;
const SkColor4f minRatioColor = SkColor4f::FromColor(kMinRatioColor) * (1 - scale);
colorBase.fR = colorBase.fR + minRatioColor.fR;
colorBase.fG = colorBase.fG + minRatioColor.fG;
colorBase.fB = colorBase.fB + minRatioColor.fB;
colorBase.fA = kAlpha;
const SkColor color = colorBase.toSkColor();
auto buffer = draw(currentHdrSdrRatio, color, transformHint, mRingBuffer[mIndex]);
mIndex = (mIndex + 1) % 2;
return buffer;
}
void HdrSdrRatioOverlay::animate() {
if (!std::isfinite(mCurrentHdrSdrRatio) || mCurrentHdrSdrRatio < 1.0f) return;
createTransaction()
.setBuffer(mSurfaceControl->get(), getOrCreateBuffers(mCurrentHdrSdrRatio))
.apply();
}
SurfaceComposerClient::Transaction HdrSdrRatioOverlay::createTransaction() const {
constexpr float kFrameRate = 0.f;
constexpr int8_t kCompatibility = ANATIVEWINDOW_FRAME_RATE_NO_VOTE;
constexpr int8_t kSeamlessness = ANATIVEWINDOW_CHANGE_FRAME_RATE_ONLY_IF_SEAMLESS;
const sp<SurfaceControl>& surface = mSurfaceControl->get();
SurfaceComposerClient::Transaction transaction;
transaction.setFrameRate(surface, kFrameRate, kCompatibility, kSeamlessness);
return transaction;
}
} // namespace android
|