// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #ifndef CPPTESTUTIL_H #define CPPTESTUTIL_H #include #include QT_BEGIN_NAMESPACE namespace CpptestUtil { static bool isOpenGLSupported() { return QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::OpenGL); } } // CpptestUtil namespace QT_END_NAMESPACE #endif