1 | // Copyright (C) 2016 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include <private/qquickcanvascontext_p.h> |
5 | |
6 | |
7 | QT_BEGIN_NAMESPACE |
8 | |
9 | QQuickCanvasContext::QQuickCanvasContext(QObject *parent) |
10 | : QObject(parent) |
11 | { |
12 | } |
13 | |
14 | QQuickCanvasContext::~QQuickCanvasContext() |
15 | { |
16 | } |
17 | |
18 | void QQuickCanvasContext::prepare(const QSize& canvasSize, const QSize& tileSize, const QRect& canvasWindow, const QRect& dirtyRect, bool smooth, bool antialiasing) |
19 | { |
20 | Q_UNUSED(canvasSize); |
21 | Q_UNUSED(tileSize); |
22 | Q_UNUSED(canvasWindow); |
23 | Q_UNUSED(dirtyRect); |
24 | Q_UNUSED(smooth); |
25 | Q_UNUSED(antialiasing); |
26 | } |
27 | |
28 | void QQuickCanvasContext::flush() |
29 | { |
30 | } |
31 | |
32 | QT_END_NAMESPACE |
33 | |
34 | |
35 | #include "moc_qquickcanvascontext_p.cpp" |
36 |