KWin
Loading...
Searching...
No Matches
generic_scene_opengl_test.h
Go to the documentation of this file.
1/*
2 KWin - the KDE window manager
3 This file is part of the KDE project.
4
5 SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
6
7 SPDX-License-Identifier: GPL-2.0-or-later
8*/
9#pragma once
10#include "kwin_wayland_test.h"
11
12#include <QObject>
13
14class GenericSceneOpenGLTest : public QObject
15{
16 Q_OBJECT
17public:
18 ~GenericSceneOpenGLTest() override;
19
20protected:
21 GenericSceneOpenGLTest(const QByteArray &envVariable);
22private Q_SLOTS:
23 void initTestCase();
24 void cleanup();
25
26private:
27 void testRestart();
28 QByteArray m_envVariable;
29};
GenericSceneOpenGLTest(const QByteArray &envVariable)