Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qquickcanvascontext.cpp
Go to the documentation of this file.
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// Qt-Security score:significant reason:default
4
5#include <private/qquickcanvascontext_p.h>
6
7
8QT_BEGIN_NAMESPACE
9
10QQuickCanvasContext::QQuickCanvasContext(QObject *parent)
11 : QObject(parent)
12{
13}
14
15QQuickCanvasContext::~QQuickCanvasContext()
16{
17}
18
19void QQuickCanvasContext::prepare(const QSize& canvasSize, const QSize& tileSize, const QRect& canvasWindow, const QRect& dirtyRect, bool smooth, bool antialiasing)
20{
21 Q_UNUSED(canvasSize);
22 Q_UNUSED(tileSize);
23 Q_UNUSED(canvasWindow);
24 Q_UNUSED(dirtyRect);
25 Q_UNUSED(smooth);
26 Q_UNUSED(antialiasing);
27}
28
29void QQuickCanvasContext::flush()
30{
31}
32
33QT_END_NAMESPACE
34
35
36#include "moc_qquickcanvascontext_p.cpp"