![]() |
Qt 6.x
The Qt SDK
|
#include <qquick3dspecularglossymaterial_p.h>
Public Types | |
enum | Lighting { NoLighting = 0 , FragmentLighting } |
enum | BlendMode { SourceOver = 0 , Screen , Multiply } |
enum | AlphaMode { Default = 0 , Mask , Blend , Opaque } |
![]() | |
enum | CullMode { BackFaceCulling = 1 , FrontFaceCulling = 2 , NoCulling = 3 } |
enum | TextureChannelMapping { R = 0 , G , B , A } |
enum | DepthDrawMode { OpaqueOnlyDepthDraw = 0 , AlwaysDepthDraw , NeverDepthDraw , OpaquePrePassDepthDraw } |
Public Member Functions | |
QQuick3DSpecularGlossyMaterial (QQuick3DObject *parent=nullptr) | |
~QQuick3DSpecularGlossyMaterial () override | |
Lighting | lighting () const |
BlendMode | blendMode () const |
QColor | albedoColor () const |
QQuick3DTexture * | albedoMap () const |
QQuick3DTexture * | emissiveMap () const |
QVector3D | emissiveFactor () const |
float | glossiness () const |
QQuick3DTexture * | glossinessMap () const |
float | opacity () const |
QQuick3DTexture * | opacityMap () const |
QQuick3DTexture * | normalMap () const |
QColor | specularColor () const |
QQuick3DTexture * | specularMap () const |
float | normalStrength () const |
QQuick3DTexture * | occlusionMap () const |
float | occlusionAmount () const |
AlphaMode | alphaMode () const |
float | alphaCutoff () const |
TextureChannelMapping | glossinessChannel () const |
TextureChannelMapping | opacityChannel () const |
TextureChannelMapping | occlusionChannel () const |
float | pointSize () const |
float | lineWidth () const |
QQuick3DTexture * | heightMap () const |
TextureChannelMapping | heightChannel () const |
float | heightAmount () const |
int | minHeightMapSamples () const |
int | maxHeightMapSamples () const |
float | clearcoatAmount () const |
QQuick3DTexture * | clearcoatMap () const |
TextureChannelMapping | clearcoatChannel () const |
float | clearcoatRoughnessAmount () const |
TextureChannelMapping | clearcoatRoughnessChannel () const |
QQuick3DTexture * | clearcoatRoughnessMap () const |
QQuick3DTexture * | clearcoatNormalMap () const |
float | transmissionFactor () const |
QQuick3DTexture * | transmissionMap () const |
TextureChannelMapping | transmissionChannel () const |
float | thicknessFactor () const |
QQuick3DTexture * | thicknessMap () const |
TextureChannelMapping | thicknessChannel () const |
float | attenuationDistance () const |
QColor | attenuationColor () const |
Q_REVISION (6, 5) bool vertexColorsEnabled() const | |
![]() | |
~QQuick3DMaterial () override | |
QQuick3DTexture * | lightProbe () const |
CullMode | cullMode () const |
DepthDrawMode | depthDrawMode () const |
![]() | |
Q_INVOKABLE | QObject (QObject *parent=nullptr) |
Constructs an object with parent object parent. | |
virtual | ~QObject () |
Destroys the object, deleting all its child objects. | |
virtual bool | event (QEvent *event) |
This virtual function receives events to an object and should return true if the event e was recognized and processed. | |
virtual bool | eventFilter (QObject *watched, QEvent *event) |
Filters events if this object has been installed as an event filter for the watched object. | |
QString | objectName () const |
Q_WEAK_OVERLOAD void | setObjectName (const QString &name) |
Sets the object's name to name. | |
void | setObjectName (QAnyStringView name) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
QBindable< QString > | bindableObjectName () |
bool | isWidgetType () const |
Returns true if the object is a widget; otherwise returns false . | |
bool | isWindowType () const |
Returns true if the object is a window; otherwise returns false . | |
bool | isQuickItemType () const |
Returns true if the object is a QQuickItem; otherwise returns false . | |
bool | signalsBlocked () const noexcept |
Returns true if signals are blocked; otherwise returns false . | |
bool | blockSignals (bool b) noexcept |
If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it). | |
QThread * | thread () const |
Returns the thread in which the object lives. | |
void | moveToThread (QThread *thread) |
Changes the thread affinity for this object and its children. | |
int | startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer) |
This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds. | |
int | startTimer (std::chrono::milliseconds time, Qt::TimerType timerType=Qt::CoarseTimer) |
void | killTimer (int id) |
Kills the timer with timer identifier, id. | |
template<typename T > | |
T | findChild (const QString &aName=QString(), Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object. | |
template<typename T > | |
QList< T > | findChildren (const QString &aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects. | |
template<typename T > | |
QList< T > | findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
const QObjectList & | children () const |
Returns a list of child objects. | |
void | setParent (QObject *parent) |
Makes the object a child of parent. | |
void | installEventFilter (QObject *filterObj) |
Installs an event filter filterObj on this object. | |
void | removeEventFilter (QObject *obj) |
Removes an event filter object obj from this object. | |
QMetaObject::Connection | connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const |
bool | disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const |
bool | disconnect (const QObject *receiver, const char *member=nullptr) const |
void | dumpObjectTree () const |
Dumps a tree of children to the debug output. | |
void | dumpObjectInfo () const |
Dumps information about signal connections, etc. | |
bool | setProperty (const char *name, const QVariant &value) |
Sets the value of the object's name property to value. | |
bool | setProperty (const char *name, QVariant &&value) |
QVariant | property (const char *name) const |
Returns the value of the object's name property. | |
QList< QByteArray > | dynamicPropertyNames () const |
QBindingStorage * | bindingStorage () |
const QBindingStorage * | bindingStorage () const |
QObject * | parent () const |
Returns a pointer to the parent object. | |
bool | inherits (const char *classname) const |
Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false . | |
![]() | |
QQmlParserStatus () | |
virtual | ~QQmlParserStatus () |
virtual void | classBegin ()=0 |
Invoked after class creation, but before any properties have been set. | |
virtual void | componentComplete ()=0 |
Invoked after the root component that caused this instantiation has completed construction. | |
Protected Member Functions | |
QSSGRenderGraphObject * | updateSpatialNode (QSSGRenderGraphObject *node) override |
void | markAllDirty () override |
void | itemChange (ItemChange, const ItemChangeData &) override |
![]() | |
QQuick3DMaterial (QQuick3DObjectPrivate &dd, QQuick3DObject *parent=nullptr) | |
\qmltype Material \inherits Object3D \inqmlmodule QtQuick3D | |
QSSGRenderGraphObject * | updateSpatialNode (QSSGRenderGraphObject *node) override |
void | itemChange (ItemChange, const ItemChangeData &) override |
![]() | |
virtual QSSGRenderGraphObject * | updateSpatialNode (QSSGRenderGraphObject *node) |
virtual void | markAllDirty () |
virtual void | itemChange (ItemChange, const ItemChangeData &) |
QQuick3DObject (QQuick3DObjectPrivate &dd, QQuick3DObject *parent=nullptr) | |
void | classBegin () override |
Invoked after class creation, but before any properties have been set. | |
void | componentComplete () override |
Invoked after the root component that caused this instantiation has completed construction. | |
bool | isComponentComplete () const |
virtual void | preSync () |
![]() | |
QObject * | sender () const |
Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr. | |
int | senderSignalIndex () const |
int | receivers (const char *signal) const |
Returns the number of receivers connected to the signal. | |
bool | isSignalConnected (const QMetaMethod &signal) const |
virtual void | timerEvent (QTimerEvent *event) |
This event handler can be reimplemented in a subclass to receive timer events for the object. | |
virtual void | childEvent (QChildEvent *event) |
This event handler can be reimplemented in a subclass to receive child events. | |
virtual void | customEvent (QEvent *event) |
This event handler can be reimplemented in a subclass to receive custom events. | |
virtual void | connectNotify (const QMetaMethod &signal) |
virtual void | disconnectNotify (const QMetaMethod &signal) |
QObject (QObjectPrivate &dd, QObject *parent=nullptr) | |
Additional Inherited Members | |
![]() | |
static QMetaObject::Connection | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection) |
\threadsafe | |
static QMetaObject::Connection | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1 , typename Func2 > | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection) |
template<typename Func1 , typename Func2 > | |
static QMetaObject::Connection | connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot) |
static bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member) |
\threadsafe | |
static bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member) |
static bool | disconnect (const QMetaObject::Connection &) |
Disconnect a connection. | |
template<typename Func1 , typename Func2 > | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot) |
template<typename Func1 > | |
static bool | disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero) |
![]() | |
QScopedPointer< QObjectData > | d_ptr |
![]() | |
template< class T > T | qobject_cast (const QObject *object) |
Returns the given object cast to type T if the object is of type T (or of a subclass); otherwise returns \nullptr. | |
template< typename T > T | qFindChildqFindChildren (const QObject *obj, const QString &name)() |
template< typename T > QList< T > | qFindChildrenqFindChildren (const QObject *obj, const QString &name)() |
QObjectList | |
\macro Q_CLASSINFO(Name, Value) | |
Definition at line 26 of file qquick3dspecularglossymaterial_p.h.
Enumerator | |
---|---|
Default | |
Mask | |
Blend | |
Opaque |
Definition at line 111 of file qquick3dspecularglossymaterial_p.h.
Enumerator | |
---|---|
SourceOver | |
Screen | |
Multiply |
Definition at line 104 of file qquick3dspecularglossymaterial_p.h.
Enumerator | |
---|---|
NoLighting | |
FragmentLighting |
Definition at line 98 of file qquick3dspecularglossymaterial_p.h.
|
explicit |
Definition at line 589 of file qquick3dspecularglossymaterial.cpp.
|
override |
Definition at line 593 of file qquick3dspecularglossymaterial.cpp.
QColor QQuick3DSpecularGlossyMaterial::albedoColor | ( | ) | const |
Definition at line 607 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::albedoMap | ( | ) | const |
Definition at line 612 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::alphaCutoff | ( | ) | const |
Definition at line 682 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DSpecularGlossyMaterial::AlphaMode QQuick3DSpecularGlossyMaterial::alphaMode | ( | ) | const |
Definition at line 677 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QColor QQuick3DSpecularGlossyMaterial::attenuationColor | ( | ) | const |
Definition at line 1461 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::attenuationDistance | ( | ) | const |
Definition at line 1447 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DSpecularGlossyMaterial::BlendMode QQuick3DSpecularGlossyMaterial::blendMode | ( | ) | const |
Definition at line 602 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::clearcoatAmount | ( | ) | const |
Definition at line 1250 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::clearcoatChannel | ( | ) | const |
Definition at line 1281 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::clearcoatMap | ( | ) | const |
Definition at line 1264 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::clearcoatNormalMap | ( | ) | const |
Definition at line 1340 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::clearcoatRoughnessAmount | ( | ) | const |
Definition at line 1295 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::clearcoatRoughnessChannel | ( | ) | const |
Definition at line 1309 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::clearcoatRoughnessMap | ( | ) | const |
Definition at line 1323 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QVector3D QQuick3DSpecularGlossyMaterial::emissiveFactor | ( | ) | const |
Definition at line 622 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::emissiveMap | ( | ) | const |
Definition at line 617 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::glossiness | ( | ) | const |
Definition at line 627 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::glossinessChannel | ( | ) | const |
Definition at line 687 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::glossinessMap | ( | ) | const |
Definition at line 632 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::heightAmount | ( | ) | const |
Definition at line 722 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::heightChannel | ( | ) | const |
Definition at line 717 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::heightMap | ( | ) | const |
Definition at line 712 of file qquick3dspecularglossymaterial.cpp.
|
signal |
|
overrideprotectedvirtual |
Reimplemented from QQuick3DMaterial.
Definition at line 1202 of file qquick3dspecularglossymaterial.cpp.
QQuick3DSpecularGlossyMaterial::Lighting QQuick3DSpecularGlossyMaterial::lighting | ( | ) | const |
Definition at line 597 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::lineWidth | ( | ) | const |
Definition at line 707 of file qquick3dspecularglossymaterial.cpp.
|
signal |
|
overrideprotectedvirtual |
Reimplemented from QQuick3DObject.
Definition at line 737 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObject::markAllDirty().
Referenced by updateSpatialNode().
int QQuick3DSpecularGlossyMaterial::maxHeightMapSamples | ( | ) | const |
Definition at line 732 of file qquick3dspecularglossymaterial.cpp.
|
signal |
int QQuick3DSpecularGlossyMaterial::minHeightMapSamples | ( | ) | const |
Definition at line 727 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::normalMap | ( | ) | const |
Definition at line 647 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::normalStrength | ( | ) | const |
Definition at line 662 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::occlusionAmount | ( | ) | const |
Definition at line 672 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::occlusionChannel | ( | ) | const |
Definition at line 697 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::occlusionMap | ( | ) | const |
Definition at line 667 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::opacity | ( | ) | const |
Definition at line 637 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::opacityChannel | ( | ) | const |
Definition at line 692 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::opacityMap | ( | ) | const |
Definition at line 642 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::pointSize | ( | ) | const |
Definition at line 702 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DSpecularGlossyMaterial::Q_REVISION | ( | 6 | , |
5 | |||
) | const |
|
slot |
|
signal |
Definition at line 763 of file qquick3dspecularglossymaterial.cpp.
References albedoColorChanged(), and emit.
Referenced by setMaterialProperties().
|
slot |
Definition at line 773 of file qquick3dspecularglossymaterial.cpp.
References albedoMap, albedoMapChanged(), QQuick3DObjectPrivate::attachWatcher(), emit, and setAlbedoMap().
Referenced by setAlbedoMap(), and setMaterialProperties().
|
slot |
Definition at line 930 of file qquick3dspecularglossymaterial.cpp.
References alphaCutoff, alphaCutoffChanged(), emit, and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 920 of file qquick3dspecularglossymaterial.cpp.
References alphaMode, alphaModeChanged(), and emit.
Referenced by setMaterialProperties().
Definition at line 1471 of file qquick3dspecularglossymaterial.cpp.
References attenuationColorChanged(), and emit.
Referenced by setMaterialProperties().
|
slot |
Definition at line 1452 of file qquick3dspecularglossymaterial.cpp.
References attenuationDistanceChanged(), emit, and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 753 of file qquick3dspecularglossymaterial.cpp.
References blendMode, blendModeChanged(), and emit.
|
slot |
Definition at line 1255 of file qquick3dspecularglossymaterial.cpp.
References clearcoatAmountChanged(), emit, and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 1286 of file qquick3dspecularglossymaterial.cpp.
References clearcoatChannelChanged(), and emit.
|
slot |
Definition at line 1269 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), clearcoatMapChanged(), emit, and setClearcoatMap().
Referenced by setClearcoatMap(), and setMaterialProperties().
|
slot |
Definition at line 1345 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), clearcoatNormalMapChanged(), emit, and setClearcoatNormalMap().
Referenced by setClearcoatNormalMap(), and setMaterialProperties().
|
slot |
Definition at line 1300 of file qquick3dspecularglossymaterial.cpp.
References clearcoatRoughnessAmountChanged(), emit, and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 1314 of file qquick3dspecularglossymaterial.cpp.
References clearcoatRoughnessChannelChanged(), and emit.
|
slot |
Definition at line 1328 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), clearcoatRoughnessMapChanged(), emit, and setClearcoatRoughnessMap().
Referenced by setClearcoatRoughnessMap(), and setMaterialProperties().
Definition at line 797 of file qquick3dspecularglossymaterial.cpp.
References emissiveFactor, emissiveFactorChanged(), and emit.
Referenced by setMaterialProperties().
|
slot |
Definition at line 785 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emissiveMap, emissiveMapChanged(), emit, and setEmissiveMap().
Referenced by setEmissiveMap(), and setMaterialProperties().
|
slot |
Definition at line 807 of file qquick3dspecularglossymaterial.cpp.
References emit, ensureNormalized(), glossiness, glossinessChanged(), and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 940 of file qquick3dspecularglossymaterial.cpp.
References channel, emit, and glossinessChannelChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 818 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, glossinessMap, glossinessMapChanged(), and setGlossinessMap().
Referenced by setGlossinessMap(), and setMaterialProperties().
|
slot |
Definition at line 1010 of file qquick3dspecularglossymaterial.cpp.
References emit, heightAmount, heightAmountChanged(), and qFuzzyCompare().
|
slot |
Definition at line 1000 of file qquick3dspecularglossymaterial.cpp.
References channel, emit, and heightChannelChanged().
|
slot |
Definition at line 988 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, heightMap, heightMapChanged(), and setHeightMap().
Referenced by setHeightMap().
|
slot |
Definition at line 743 of file qquick3dspecularglossymaterial.cpp.
References emit, lighting, and lightingChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 979 of file qquick3dspecularglossymaterial.cpp.
References emit, lineWidthChanged(), and qFuzzyCompare().
|
slot |
Definition at line 1030 of file qquick3dspecularglossymaterial.cpp.
References emit, and maxHeightMapSamplesChanged().
|
slot |
Definition at line 1020 of file qquick3dspecularglossymaterial.cpp.
References emit, and minHeightMapSamplesChanged().
|
slot |
Definition at line 853 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, normalMap, normalMapChanged(), and setNormalMap().
Referenced by setMaterialProperties(), and setNormalMap().
|
slot |
Definition at line 887 of file qquick3dspecularglossymaterial.cpp.
References emit, ensureNormalized(), normalStrengthChanged(), and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 910 of file qquick3dspecularglossymaterial.cpp.
References emit, occlusionAmount, occlusionAmountChanged(), and qFuzzyCompare().
Referenced by setMaterialProperties().
|
slot |
Definition at line 960 of file qquick3dspecularglossymaterial.cpp.
References channel, emit, and occlusionChannelChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 898 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, occlusionMap, occlusionMapChanged(), and setOcclusionMap().
Referenced by setMaterialProperties(), and setOcclusionMap().
|
slot |
Definition at line 830 of file qquick3dspecularglossymaterial.cpp.
References emit, ensureNormalized(), opacity, opacityChanged(), and qFuzzyCompare().
|
slot |
Definition at line 950 of file qquick3dspecularglossymaterial.cpp.
References channel, emit, and opacityChannelChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 841 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, opacityMap, opacityMapChanged(), and setOpacityMap().
Referenced by setOpacityMap().
|
slot |
Definition at line 970 of file qquick3dspecularglossymaterial.cpp.
References emit, pointSizeChanged(), and qFuzzyCompare().
Definition at line 865 of file qquick3dspecularglossymaterial.cpp.
References emit, and specularColorChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 875 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, setSpecularMap(), specularMap, and specularMapChanged().
Referenced by setMaterialProperties(), and setSpecularMap().
|
slot |
Definition at line 1438 of file qquick3dspecularglossymaterial.cpp.
References emit, and thicknessChannelChanged().
|
slot |
Definition at line 1407 of file qquick3dspecularglossymaterial.cpp.
References emit, qFuzzyCompare(), and thicknessFactorChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 1421 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, setThicknessMap(), and thicknessMapChanged().
Referenced by setMaterialProperties(), and setThicknessMap().
|
slot |
Definition at line 1393 of file qquick3dspecularglossymaterial.cpp.
References emit, and transmissionChannelChanged().
|
slot |
Definition at line 1362 of file qquick3dspecularglossymaterial.cpp.
References emit, qFuzzyCompare(), and transmissionFactorChanged().
Referenced by setMaterialProperties().
|
slot |
Definition at line 1376 of file qquick3dspecularglossymaterial.cpp.
References QQuick3DObjectPrivate::attachWatcher(), emit, setTransmissionMap(), and transmissionMapChanged().
Referenced by setMaterialProperties(), and setTransmissionMap().
QColor QQuick3DSpecularGlossyMaterial::specularColor | ( | ) | const |
Definition at line 652 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::specularMap | ( | ) | const |
Definition at line 657 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::thicknessChannel | ( | ) | const |
Definition at line 1433 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::thicknessFactor | ( | ) | const |
Definition at line 1402 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::thicknessMap | ( | ) | const |
Definition at line 1416 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DMaterial::TextureChannelMapping QQuick3DSpecularGlossyMaterial::transmissionChannel | ( | ) | const |
Definition at line 1388 of file qquick3dspecularglossymaterial.cpp.
|
signal |
float QQuick3DSpecularGlossyMaterial::transmissionFactor | ( | ) | const |
Definition at line 1357 of file qquick3dspecularglossymaterial.cpp.
|
signal |
QQuick3DTexture * QQuick3DSpecularGlossyMaterial::transmissionMap | ( | ) | const |
Definition at line 1371 of file qquick3dspecularglossymaterial.cpp.
|
signal |
|
overrideprotectedvirtual |
Reimplemented from QQuick3DMaterial.
Definition at line 1040 of file qquick3dspecularglossymaterial.cpp.
References QSSGRenderDefaultMaterial::alphaCutoff, QSSGRenderDefaultMaterial::alphaMode, QSSGRenderDefaultMaterial::attenuationColor, QSSGRenderDefaultMaterial::attenuationDistance, QSSGRenderDefaultMaterial::blendMode, QSSGRenderDefaultMaterial::bumpAmount, QSSGRenderDefaultMaterial::clearcoatAmount, QSSGRenderDefaultMaterial::clearcoatChannel, QSSGRenderDefaultMaterial::clearcoatMap, QSSGRenderDefaultMaterial::clearcoatNormalMap, QSSGRenderDefaultMaterial::clearcoatRoughnessAmount, QSSGRenderDefaultMaterial::clearcoatRoughnessChannel, QSSGRenderDefaultMaterial::clearcoatRoughnessMap, QSSGRenderDefaultMaterial::color, QSSGRenderDefaultMaterial::colorMap, QSSGRenderDefaultMaterial::emissiveColor, QSSGRenderDefaultMaterial::emissiveMap, QSSGRenderDefaultMaterial::fresnelPower, QQuick3DTexture::getRenderImage(), QSSGRenderDefaultMaterial::heightAmount, QSSGRenderDefaultMaterial::heightChannel, QSSGRenderDefaultMaterial::heightMap, QSSGRenderDefaultMaterial::KGGX, QSSGRenderDefaultMaterial::lighting, QSSGRenderDefaultMaterial::lineWidth, markAllDirty(), QSSGRenderDefaultMaterial::maxHeightSamples, QSSGRenderDefaultMaterial::minHeightSamples, QSSGRenderDefaultMaterial::normalMap, QSSGRenderDefaultMaterial::occlusionAmount, QSSGRenderDefaultMaterial::occlusionChannel, QSSGRenderDefaultMaterial::occlusionMap, QSSGRenderDefaultMaterial::opacity, QSSGRenderDefaultMaterial::opacityChannel, QSSGRenderDefaultMaterial::opacityMap, QSSGRenderDefaultMaterial::pointSize, QSSGRenderDefaultMaterial::roughnessChannel, QSSGRenderDefaultMaterial::roughnessMap, QSSGRenderDefaultMaterial::specularMap, QSSGRenderDefaultMaterial::specularModel, QSSGRenderDefaultMaterial::specularRoughness, QSSGRenderDefaultMaterial::specularTint, QSSGRenderDefaultMaterial::thicknessChannel, QSSGRenderDefaultMaterial::thicknessFactor, QSSGRenderDefaultMaterial::thicknessMap, QVector4D::toVector3D(), QSSGRenderDefaultMaterial::transmissionChannel, QSSGRenderDefaultMaterial::transmissionFactor, QSSGRenderDefaultMaterial::transmissionMap, QQuick3DMaterial::updateSpatialNode(), and QSSGRenderDefaultMaterial::vertexColorsEnabled.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setAlbedoMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setAlphaCutoff().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setAlphaMode().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setBlendMode().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
read |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setEmissiveFactor().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setEmissiveMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setGlossiness().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setGlossinessMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setHeightAmount().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setHeightMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setLighting().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setNormalMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setOcclusionAmount().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setOcclusionMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setOpacity().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setOpacityMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
Referenced by setSpecularMap().
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.
|
readwrite |
Definition at line 348 of file qquick3dspecularglossymaterial_p.h.