blob: 4d37d008b5f82b0eae0abe771e177f81e77acfe2 [file] [log] [blame]
Roman Stratiienko946126c2020-10-02 19:01:10 +03001/*
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +03002 * Copyright (C) 2020 The Android Open Source Project
Roman Stratiienko946126c2020-10-02 19:01:10 +03003 *
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 */
16
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030017#ifndef BUFFERINFOLIBDRM_H_
18#define BUFFERINFOLIBDRM_H_
Roman Stratiienko946126c2020-10-02 19:01:10 +030019
20#include <hardware/gralloc.h>
21
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030022#include "bufferinfo/BufferInfoGetter.h"
Roman Stratiienko946126c2020-10-02 19:01:10 +030023
24namespace android {
25
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030026class BufferInfoLibdrm : public LegacyBufferInfoGetter {
Roman Stratiienko946126c2020-10-02 19:01:10 +030027 public:
Roman Stratiienkob2e9fe22020-10-03 10:52:36 +030028 using LegacyBufferInfoGetter::LegacyBufferInfoGetter;
Roman Stratiienko946126c2020-10-02 19:01:10 +030029 int ConvertBoInfo(buffer_handle_t handle, hwc_drm_bo_t *bo) override;
30
31 private:
32 bool GetYuvPlaneInfo(int num_fds, buffer_handle_t handle, hwc_drm_bo_t *bo);
33};
34
35} // namespace android
36
37#endif