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

#ifndef FBOINSGRENDERER_H
#define FBOINSGRENDERER_H

#include <QtQuick/QQuickFramebufferObject>

class LogoRenderer;

class FboInSGRenderer : public QQuickFramebufferObject
{
    Q_OBJECT
    QML_NAMED_ELEMENT(Renderer)
public:
    Renderer *createRenderer() const;
};

#endif