/* SPDX-FileCopyrightText: 2018 Fredrik Höglund SPDX-FileCopyrightText: 2019 Roman Gilg SPDX-FileCopyrightText: 2021 Vlad Zahorodnii SPDX-FileCopyrightText: 2021 Xaver Hugl SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL */ #pragma once #include "core/graphicsbuffer.h" #include #include #include #include namespace KWin { class Display; class LinuxDmaBufV1ClientBufferIntegrationPrivate; class LinuxDmaBufV1FeedbackPrivate; class RenderBackend; class DrmDevice; class KWIN_EXPORT LinuxDmaBufV1Feedback : public QObject { Q_OBJECT public: ~LinuxDmaBufV1Feedback() override; enum class TrancheFlag : uint32_t { Scanout = 1, }; Q_DECLARE_FLAGS(TrancheFlags, TrancheFlag) struct Tranche { dev_t device; TrancheFlags flags; QHash> formatTable; }; /** * Sets the list of tranches for this feedback object, with lower indices * indicating a higher priority / a more optimal configuration. * The main device does not need to be included */ void setScanoutTranches(DrmDevice *device, const QHash> &formats); void setTranches(const QList &tranches); private: static QList createScanoutTranches(const QList &tranches, DrmDevice *device, const QHash> &formats); LinuxDmaBufV1Feedback(LinuxDmaBufV1ClientBufferIntegrationPrivate *integration); friend class LinuxDmaBufV1ClientBufferIntegrationPrivate; friend class LinuxDmaBufV1FeedbackPrivate; std::unique_ptr d; }; /** * The LinuxDmaBufV1ClientBufferIntegration class provides support for linux dma-buf buffers. */ class KWIN_EXPORT LinuxDmaBufV1ClientBufferIntegration : public QObject { Q_OBJECT public: explicit LinuxDmaBufV1ClientBufferIntegration(Display *display); ~LinuxDmaBufV1ClientBufferIntegration() override; RenderBackend *renderBackend() const; void setRenderBackend(RenderBackend *renderBackend); void setSupportedFormatsWithModifiers(const QList &tranches); private: friend class LinuxDmaBufV1ClientBufferIntegrationPrivate; std::unique_ptr d; }; } // namespace KWin