aboutsummaryrefslogtreecommitdiff
path: root/system/hwc2/HostComposer.h
blob: f17b61024524523b8f45ceeddec223f4b2c8ab19 (plain)
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
/*
 * Copyright 2021 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.
 */

#ifndef ANDROID_HWC_HOSTCOMPOSER_H
#define ANDROID_HWC_HOSTCOMPOSER_H

#include <android-base/unique_fd.h>

#include <tuple>
#include <vector>

#include "Common.h"
#include "Composer.h"
#include "DrmPresenter.h"
#include "FencedBuffer.h"
#include "HostConnection.h"

namespace android {

class HostComposer : public Composer {
 public:
  HostComposer(DrmPresenter* drmPresenter, bool isMinigbm);

  HostComposer(const HostComposer&) = delete;
  HostComposer& operator=(const HostComposer&) = delete;

  HostComposer(HostComposer&&) = delete;
  HostComposer& operator=(HostComposer&&) = delete;

  HWC2::Error init() override;

  HWC2::Error onDisplayCreate(Display* display) override;

  HWC2::Error onDisplayDestroy(Display* display) override;

  HWC2::Error onDisplayClientTargetSet(Display* display) override;

  // Determines if this composer can compose the given layers on the given
  // display and requests changes for layers that can't not be composed.
  HWC2::Error validateDisplay(
      Display* display, std::unordered_map<hwc2_layer_t, HWC2::Composition>*
                            outLayerCompositionChanges) override;

  // Performs the actual composition of layers and presents the composed result
  // to the display.
  std::tuple<HWC2::Error, base::unique_fd> presentDisplay(
      Display* display) override;

  HWC2::Error onActiveConfigChange(Display* display) override;

 private:
  HWC2::Error createHostComposerDisplayInfo(Display* display,
                                            uint32_t hostDisplayId);

  void post(HostConnection* hostCon, ExtendedRCEncoderContext* rcEnc,
            buffer_handle_t h);

  bool mIsMinigbm = false;

  int mSyncDeviceFd = -1;

  class CompositionResultBuffer {
   public:
    static std::unique_ptr<CompositionResultBuffer> create(int32_t width,
                                                           int32_t height);
    static std::unique_ptr<CompositionResultBuffer> createWithDrmBuffer(
        int32_t width, int32_t height, DrmPresenter&);
    ~CompositionResultBuffer();

    DrmBuffer& waitAndGetDrmBuffer();
    buffer_handle_t waitAndGetBufferHandle();
    bool isReady() const;
    void setFence(base::unique_fd fence);

   private:
    CompositionResultBuffer() = default;

    void waitForFence();

    std::unique_ptr<FencedBuffer> mFencedBuffer;
    // Drm info for the additional composition result buffer.
    std::unique_ptr<DrmBuffer> mDrmBuffer;
  };
  class HostComposerDisplayInfo {
   public:
    HostComposerDisplayInfo() = default;
    void resetCompositionResultBuffers(
        std::vector<std::unique_ptr<CompositionResultBuffer>>);
    CompositionResultBuffer& getNextCompositionResultBuffer();

    uint32_t hostDisplayId = 0;
    // Drm info for the displays client target buffer.
    std::unique_ptr<DrmBuffer> clientTargetDrmBuffer;

   private:
    // Additional per display buffer for the composition result.
    std::vector<std::unique_ptr<CompositionResultBuffer>>
        compositionResultBuffers;
  };

  std::unordered_map<hwc2_display_t, HostComposerDisplayInfo> mDisplayInfos;
  DrmPresenter* mDrmPresenter;
};

}  // namespace android

#endif