KSvg

managedtexturenode.h
1/*
2 SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@blue-systems.com>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef MANAGEDTEXTURENODE_H
8#define MANAGEDTEXTURENODE_H
9
10#include <QSGSimpleTextureNode>
11#include <QSGTexture>
12#include <QSharedPointer>
13#include <qglobal.h>
14
15class ManagedTextureNode : public QSGSimpleTextureNode
16{
17 Q_DISABLE_COPY(ManagedTextureNode)
18public:
19 ManagedTextureNode();
20
21 void setTexture(QSharedPointer<QSGTexture> texture);
22
23private:
25};
26
27#endif
QSGTexture * texture() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 10 2024 11:47:10 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.