1 | // Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB). |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include "qtexturegenerator_p.h" |
5 | |
6 | QT_BEGIN_NAMESPACE |
7 | |
8 | namespace Qt3DRender { |
9 | |
10 | /*! class Qt3DRender::QTextureGenerator |
11 | \inmodule Qt3DRender |
12 | \brief Generates the necessary information to create an OpenGL texture image. |
13 | */ |
14 | QTextureGenerator::~QTextureGenerator() |
15 | { |
16 | } |
17 | |
18 | /*! |
19 | \class Qt3DRender::QTextureGenerator |
20 | \inmodule Qt3DRender |
21 | \brief Provides the image data for a texture. |
22 | */ |
23 | /*! |
24 | \fn QTextureDataPtr Qt3DRender::QTextureGenerator::operator()() |
25 | |
26 | Returns the texture data. |
27 | */ |
28 | /*! |
29 | \fn bool Qt3DRender::QTextureGenerator::operator==(const QTextureGenerator &other) const = 0 |
30 | |
31 | Compare these texture data to \a other. Returns \c true if both are equal. |
32 | */ |
33 | } // Qt3DRender |
34 | |
35 | QT_END_NAMESPACE |
36 | |