File indexing completed on 2024-05-12 17:02:03

0001 /*
0002     KWin - the KDE window manager
0003     This file is part of the KDE project.
0004 
0005     SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 #pragma once
0010 #include "utils/abstract_opengl_context_attribute_builder.h"
0011 
0012 namespace KWin
0013 {
0014 
0015 class GlxContextAttributeBuilder : public AbstractOpenGLContextAttributeBuilder
0016 {
0017 public:
0018     std::vector<int> build() const override;
0019 };
0020 
0021 }