summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wasm/qwasmoffscreensurface.h
blob: ad9c556d1069e540f8781139c0eec5d0a9942d80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef QWASMOFFSCREENSURFACE_H
#define QWASMOFFSCREENSURFACE_H

#include <qpa/qplatformoffscreensurface.h>

QT_BEGIN_NAMESPACE

class QOffscreenSurface;
class QWasmOffscrenSurface : public QPlatformOffscreenSurface
{
public:
    explicit QWasmOffscrenSurface(QOffscreenSurface *offscreenSurface);
    ~QWasmOffscrenSurface();
private:

};

QT_END_NAMESPACE

#endif