summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/directfb/qdirectfbeglhooks_stub.cpp
blob: f7b9607e6993d175e2f23ec4ca0b141b98e1f22d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default

#include "qdirectfbeglhooks.h"

/**
 * This file is compiled in case there is no platform specific hook. On an
 * optimizing compiler these functions should never be called.
 */

void QDirectFBEGLHooks::platformInit()
{
}

void QDirectFBEGLHooks::platformDestroy()
{
}

bool QDirectFBEGLHooks::hasCapability(QPlatformIntegration::Capability) const
{
    return false;
}