2021-06-22 00:23:17 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
SPDX-FileCopyrightText: 2021 Xaver Hugl <xaver.hugl@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QSize>
|
|
|
|
#include <kwinglutils.h>
|
|
|
|
|
2021-11-10 13:47:13 +00:00
|
|
|
#include "egl_gbm_backend.h"
|
|
|
|
|
2021-06-22 00:23:17 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2022-02-12 22:27:28 +00:00
|
|
|
class DrmDisplayDevice;
|
2021-06-22 00:23:17 +00:00
|
|
|
|
|
|
|
class ShadowBuffer
|
|
|
|
{
|
|
|
|
public:
|
2021-11-10 13:47:13 +00:00
|
|
|
ShadowBuffer(const QSize &size, const GbmFormat &format);
|
2021-06-22 00:23:17 +00:00
|
|
|
~ShadowBuffer();
|
|
|
|
|
|
|
|
bool isComplete() const;
|
2022-02-12 22:27:28 +00:00
|
|
|
void render(DrmDisplayDevice *displayDevice);
|
2021-06-22 00:23:17 +00:00
|
|
|
|
2022-02-06 12:07:48 +00:00
|
|
|
GLRenderTarget *renderTarget() const;
|
|
|
|
QSharedPointer<GLTexture> texture() const;
|
2022-02-01 02:47:38 +00:00
|
|
|
uint32_t drmFormat() const;
|
2021-05-25 22:05:17 +00:00
|
|
|
|
2021-06-22 00:23:17 +00:00
|
|
|
private:
|
2022-02-01 02:47:38 +00:00
|
|
|
GLint internalFormat(const GbmFormat &format) const;
|
2022-02-06 12:07:48 +00:00
|
|
|
QSharedPointer<GLTexture> m_texture;
|
|
|
|
QScopedPointer<GLRenderTarget> m_renderTarget;
|
2021-06-22 00:23:17 +00:00
|
|
|
QScopedPointer<GLVertexBuffer> m_vbo;
|
2022-02-01 02:47:38 +00:00
|
|
|
const QSize m_size;
|
|
|
|
const uint32_t m_drmFormat;
|
2021-06-22 00:23:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|