/* SPDX-FileCopyrightText: 2023 Vlad Zahorodnii SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include "core/graphicsbufferallocator.h" namespace KWin { class KWIN_EXPORT ShmGraphicsBufferAllocator : public GraphicsBufferAllocator { public: GraphicsBuffer *allocate(const GraphicsBufferOptions &options) override; }; } // namespace KWin