Warning, file /plasma/kwin/autotests/integration/generic_scene_opengl_test.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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 "kwin_wayland_test.h"
0011 
0012 #include <QObject>
0013 
0014 class GenericSceneOpenGLTest : public QObject
0015 {
0016     Q_OBJECT
0017 public:
0018     ~GenericSceneOpenGLTest() override;
0019 
0020 protected:
0021     GenericSceneOpenGLTest(const QByteArray &envVariable);
0022 private Q_SLOTS:
0023     void initTestCase();
0024     void cleanup();
0025     void testRestart();
0026 
0027 private:
0028     QByteArray m_envVariable;
0029 };