File indexing completed on 2025-02-02 05:18:57
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 0026 private: 0027 void testRestart(); 0028 QByteArray m_envVariable; 0029 };