aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/context2d/qquickcanvascontext.cpp
blob: eeea376dd68d3ec17be03327607ca76dca5b08df (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
25
26
27
28
29
30
31
32
33
34
35
// 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

#include <private/qquickcanvascontext_p.h>


QT_BEGIN_NAMESPACE

QQuickCanvasContext::QQuickCanvasContext(QObject *parent)
    : QObject(parent)
{
}

QQuickCanvasContext::~QQuickCanvasContext()
{
}

void QQuickCanvasContext::prepare(const QSize& canvasSize, const QSize& tileSize, const QRect& canvasWindow, const QRect& dirtyRect, bool smooth, bool antialiasing)
{
    Q_UNUSED(canvasSize);
    Q_UNUSED(tileSize);
    Q_UNUSED(canvasWindow);
    Q_UNUSED(dirtyRect);
    Q_UNUSED(smooth);
    Q_UNUSED(antialiasing);
}

void QQuickCanvasContext::flush()
{
}

QT_END_NAMESPACE


#include "moc_qquickcanvascontext_p.cpp"