blob: 381df3790346edc44ebff54e3a777d0f8903b066 [file] [log] [blame]
Ady Abraham03b02dd2019-03-21 15:40:11 -07001/*
2 * Copyright 2019 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 */
Dominik Laskowski20134642020-04-20 22:36:44 -070016
Ady Abraham03b02dd2019-03-21 15:40:11 -070017#pragma once
18
Dominik Laskowskif6b4ba62021-11-09 12:46:10 -080019#include <SkCanvas.h>
20#include <SkColor.h>
21#include <unordered_map>
22
Dominik Laskowski20134642020-04-20 22:36:44 -070023#include <math/vec4.h>
Alec Mouria90a5702021-04-16 16:36:21 +000024#include <renderengine/RenderEngine.h>
Dominik Laskowski29fa1462021-04-27 15:51:50 -070025#include <ui/LayerStack.h>
Dominik Laskowski20134642020-04-20 22:36:44 -070026#include <ui/Rect.h>
27#include <ui/Size.h>
28#include <utils/StrongPointer.h>
29
Dominik Laskowskif6b4ba62021-11-09 12:46:10 -080030#include <scheduler/Fps.h>
Ady Abraham03b02dd2019-03-21 15:40:11 -070031
32namespace android {
33
Dominik Laskowski20134642020-04-20 22:36:44 -070034class Client;
35class GraphicBuffer;
36class IBinder;
37class IGraphicBufferProducer;
38class Layer;
39class SurfaceFlinger;
chaviw70aa7572021-09-22 12:27:57 -050040class SurfaceControl;
Dominik Laskowski20134642020-04-20 22:36:44 -070041
Ady Abraham03b02dd2019-03-21 15:40:11 -070042class RefreshRateOverlay {
43public:
Ady Abraham1b11bc62021-06-03 19:51:19 -070044 RefreshRateOverlay(SurfaceFlinger&, uint32_t lowFps, uint32_t highFps, bool showSpinner);
Ady Abraham03b02dd2019-03-21 15:40:11 -070045
Dominik Laskowski29fa1462021-04-27 15:51:50 -070046 void setLayerStack(ui::LayerStack);
Dominik Laskowski20134642020-04-20 22:36:44 -070047 void setViewport(ui::Size);
Dominik Laskowskif6b4ba62021-11-09 12:46:10 -080048 void changeRefreshRate(Fps);
Dominik Laskowskie0e0cde2021-07-30 10:42:05 -070049 void animate();
Ady Abraham03b02dd2019-03-21 15:40:11 -070050
51private:
Ady Abraham2cb8b622019-12-02 18:55:33 -080052 class SevenSegmentDrawer {
53 public:
rnlee756005b2021-05-27 10:46:36 -070054 static std::vector<sp<GraphicBuffer>> draw(int number, SkColor& color,
55 ui::Transform::RotationFlags, bool showSpinner);
Ady Abraham2cb8b622019-12-02 18:55:33 -080056 static uint32_t getHeight() { return BUFFER_HEIGHT; }
57 static uint32_t getWidth() { return BUFFER_WIDTH; }
58
59 private:
rnlee756005b2021-05-27 10:46:36 -070060 enum class Segment { Upper, UpperLeft, UpperRight, Middle, LowerLeft, LowerRight, Bottom };
Ady Abraham2cb8b622019-12-02 18:55:33 -080061
rnlee756005b2021-05-27 10:46:36 -070062 static void drawSegment(Segment segment, int left, SkColor& color, SkCanvas& canvas);
63 static void drawDigit(int digit, int left, SkColor& color, SkCanvas& canvas);
Ady Abraham2cb8b622019-12-02 18:55:33 -080064
65 static constexpr uint32_t DIGIT_HEIGHT = 100;
66 static constexpr uint32_t DIGIT_WIDTH = 64;
67 static constexpr uint32_t DIGIT_SPACE = 16;
68 static constexpr uint32_t BUFFER_HEIGHT = DIGIT_HEIGHT;
69 static constexpr uint32_t BUFFER_WIDTH =
Ady Abraham29d0da32020-07-16 18:39:33 -070070 4 * DIGIT_WIDTH + 3 * DIGIT_SPACE; // Digit|Space|Digit|Space|Digit|Space|Spinner
Ady Abraham2cb8b622019-12-02 18:55:33 -080071 };
72
Ady Abraham03b02dd2019-03-21 15:40:11 -070073 bool createLayer();
chaviw70aa7572021-09-22 12:27:57 -050074
75 const std::vector<sp<GraphicBuffer>>& getOrCreateBuffers(uint32_t fps);
Ady Abraham03b02dd2019-03-21 15:40:11 -070076
77 SurfaceFlinger& mFlinger;
Dominik Laskowski20134642020-04-20 22:36:44 -070078 const sp<Client> mClient;
Ady Abraham03b02dd2019-03-21 15:40:11 -070079 sp<IBinder> mIBinder;
80 sp<IGraphicBufferProducer> mGbp;
81
chaviw70aa7572021-09-22 12:27:57 -050082 std::unordered_map<ui::Transform::RotationFlags,
83 std::unordered_map<int, std::vector<sp<GraphicBuffer>>>>
Alec Mouria90a5702021-04-16 16:36:21 +000084 mBufferCache;
Ady Abraham29d0da32020-07-16 18:39:33 -070085 std::optional<int> mCurrentFps;
86 int mFrame = 0;
Ady Abraham2cb8b622019-12-02 18:55:33 -080087 static constexpr float ALPHA = 0.8f;
rnlee756005b2021-05-27 10:46:36 -070088 const SkColor LOW_FPS_COLOR = SK_ColorRED;
89 const SkColor HIGH_FPS_COLOR = SK_ColorGREEN;
Ady Abraham29d0da32020-07-16 18:39:33 -070090
91 const bool mShowSpinner;
Marin Shalamanovf7f6b3c2020-12-09 13:19:38 +010092
93 // Interpolate the colors between these values.
Ady Abraham1b11bc62021-06-03 19:51:19 -070094 const uint32_t mLowFps;
95 const uint32_t mHighFps;
chaviw70aa7572021-09-22 12:27:57 -050096
97 sp<SurfaceControl> mSurfaceControl;
Ady Abraham03b02dd2019-03-21 15:40:11 -070098};
99
Dominik Laskowski20134642020-04-20 22:36:44 -0700100} // namespace android