/* KWin - the KDE window manager This file is part of the KDE project. SPDX-FileCopyrightText: 2021 Xaver Hugl SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include #include namespace KWin { class DrmOutput; class ShadowBuffer { public: ShadowBuffer(const QSize &size); ~ShadowBuffer(); bool isComplete() const; void bind(); void render(DrmOutput *output); int texture() const; QSize textureSize() const; private: GLuint m_texture; GLuint m_framebuffer; QScopedPointer m_vbo; QSize m_size; }; }