aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/graph/noisynode.h
blob: 512265646d205a696d2b5d08d657f9f9ac577e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef NOISYNODE_H
#define NOISYNODE_H

#include <QSGGeometryNode>
#include <QQuickWindow>

class NoisyNode : public QSGGeometryNode
{
public:
    NoisyNode(QQuickWindow *window);

    void setRect(const QRectF &bounds);
};

#endif // NOISYNODE_H