// Copyright (C) 2020 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 #include #include #include #include QT_BEGIN_NAMESPACE using namespace QNativeInterface::Private; /*! \class QNativeInterface::QAndroidOffscreenSurface \since 6.0 \brief Native interface to a offscreen surface on Android. Accessed through QOffscreenSurface::nativeInterface(). \inmodule QtGui \inheaderfile QOffscreenSurface \ingroup native-interfaces \ingroup native-interfaces-qoffscreensurface */ QT_DEFINE_NATIVE_INTERFACE(QAndroidOffscreenSurface); QT_DEFINE_PRIVATE_NATIVE_INTERFACE(QAndroidOffScreenIntegration); QOffscreenSurface *QNativeInterface::QAndroidOffscreenSurface::fromNative(ANativeWindow *nativeSurface) { return QGuiApplicationPrivate::platformIntegration()->call< &QAndroidOffScreenIntegration::createOffscreenSurface>(nativeSurface); } QT_END_NAMESPACE