QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsnullmaterialsettings.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsnullmaterialsettings.cpp
3 --------------------------------------
4 Date : November 2020
5 Copyright : (C) 2020 by Nyall Dawson
6 Email : nyall dot dawson at gmail dot com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
17#include <QMap>
18
19
21{
22 return QStringLiteral( "null" );
23}
24
26{
27 switch ( technique )
28 {
30 return true;
31
38 return false;
39 }
40 return false;
41}
42
44{
45 return new QgsNullMaterialSettings();
46}
47
49{
50 return new QgsNullMaterialSettings( *this );
51}
52
54{
55 return nullptr;
56}
57
58QMap<QString, QString> QgsNullMaterialSettings::toExportParameters() const
59{
60 QMap<QString, QString> parameters;
61 return parameters;
62}
63
64void QgsNullMaterialSettings::addParametersToEffect( Qt3DRender::QEffect * ) const
65{
66}
QMap< QString, QString > toExportParameters() const override
Returns the parameters to be exported to .mtl file.
void addParametersToEffect(Qt3DRender::QEffect *effect) const override
Adds parameters from the material to a destination effect.
static QgsAbstractMaterialSettings * create()
Returns a new instance of QgsNullMaterialSettings.
QgsNullMaterialSettings()=default
Constructor for QgsNullMaterialSettings.
static bool supportsTechnique(QgsMaterialSettingsRenderingTechnique technique)
Returns true if the specified technique is supported by the material.
Qt3DRender::QMaterial * toMaterial(QgsMaterialSettingsRenderingTechnique technique, const QgsMaterialContext &context) const override
Creates a new QMaterial object representing the material settings.
QgsNullMaterialSettings * clone() const override
Clones the material settings.
QString type() const override
Returns the unique type name for the material.
QgsMaterialSettingsRenderingTechnique
Material rendering techniques 3.
@ Points
Point based rendering, requires point data.
@ Triangles
Triangle based rendering (default)
@ TrianglesFromModel
Triangle based rendering, using a model object source.
@ Lines
Line based rendering, requires line data.
@ TrianglesDataDefined
Triangle based rendering with possibility of datadefined color.
@ InstancedPoints
Instanced based rendering, requiring triangles and point data.
@ TrianglesWithFixedTexture
Triangle based rendering, using a fixed, non-user-configurable texture (e.g. for terrain rendering)